How to reference a Table Cell Value plus offset?
Summation
Member, PRO Posts: 476
I am trying to reference a table cell value plus an offset.
Which is correct? Could use some help.
- tableCellValue(game.Table, game.frick+1, game.frack)
- tableCellValue(game.Table, (game.frick+1), game.frack)
- Neither of these
Best Answer
-
jamie_c ImagineLabs.rocks Posts: 5,772
Have you tried them? Both 1 and 2 should work I believe, but you don't really need the extra "()" in #2.