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

Hi

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

David


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..


Reply