Hi again.
I'm trying to create a dashboard by creating some tables and distributions within one window. Something like the below.
What I find is that the tables are created with the row initial selection...
but then when the the next row selection is made, the tables are updated.
(with the wait, I can see the table..and then after 15 secs I see it change)
An suggestions?
Thanks,
Alex
New Window ( MyDashBoard,
---a couple of tables showing the last 6 months
dt << clear row states;
dt << select where(MonthFinish2 <= 201010) << exclude << clear select;
Tablulate ( blah blah);
Tablulate ( blah blah);
---Add a wait for debugging
wait(15);
---a bunch of distributions for the current month
dt << clear row states;
dt << select where(MonthFinish2 != 201104) << exclude << clear select;
Distribution( blah blah)
); ----close new window