Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

table box

Hi all, I have loaded around 20 tables of data with same headings but different data. I would like to show data from a particular table in table box. when I am trying to do so, table box is showing data from all the tables which I don't want. I just want to show data from a particular table only. Could you please suggest me on this. Thank you.

3 Replies
sunny_talwar

I don't think it would be possible unless you have a flag which you can select to show just the data from that table.

Table:

LOAD blahblah,

          'Table1' as TableFlag

FROM Table1;

Concatenate (Table)

LOAD blahblah,

          'Table2' as TableFlag

FROM Table2;

and now create a list box for TableFlag and select whichever one you want to see

Not applicable
Author

Thank you.

sunny_talwar

Not a problem