display excel values
guilleface
Member Posts: 1,014
so If I have a sheet with 30 columns and like 10 rows, thats Total of 300 numbers, if I need all those numbers to be display on my screen I will need 300 actors on my scene?
Comments
Depends how flexible you are regarding layout. You can use tableMergeValues to display entire columns or rows at once, and you can use multiple Display Text behaviours in one actor. You can also use something like:
tableMergeValues().."\n"..tableMergeValues().."\n" etc. to display multiple rows on separate lines.
So you can display all 300 numbers using a single display text in a single actor.
If you want to carefully space and align each cell like is done in Excel, though, you'll likely need an actor per cell.
Contact me for custom work - Expert GS developer with 15 years of GS experience - Skype: armelline.support
ok thanks will look into that.