Question

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

  • 28 April 2016
  • 2 replies
  • 0 views

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

2 replies

Userlevel 4

Hi

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

David

Badge +3

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