Skip to main content
Question

Once I've created a Grid, is there a simple way to name each grid cell A1, A2, A3... D7, D8 etc?

  • April 28, 2016
  • 2 replies
  • 19 views

Once I've created a Grid, is there a simple way to name each grid cell A1, A2, A3... D7, D8 etc?
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

david_r
Celebrity
  • April 28, 2016

Hi

If you created the grid using the Tiler, you can use the _row and _column attributes as the basis for this.

David


gio
Contributor
Forum|alt.badge.img+15
  • Contributor
  • April 28, 2016

use rownumber and charactercode extractor and charactercodereplacer.

Concatenate with columnnumber.

with start _row = 1 equivalent with A. etc.

CharacterCodeReplacer((CharacterCodeExtractor(A)-1) + _row)@Value(

_column)

or something like that..