display excel values

guillefaceguilleface Member, BASIC 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

  • ArmellineArmelline Member, PRO Posts: 5,332

    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.

  • guillefaceguilleface Member, BASIC Posts: 1,014

    ok thanks will look into that.

Sign In or Register to comment.