Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,Good Morning,
I'm doing an Application that has 3 dashboards in three(3) different tabs that's visible for many people.
How could I go to the next tab automatically?
For example: Dashboard1 after 40 seconds go to the Dashboard2 after 40 seconds go to the Dashboard3 and do this cicle constantly.
Someone could help me?
Tks.
See here: SlideShow.qvw
Considering you have three tabs and want to show each tab for 20 seconds, use below codes
Go to Sheet Properties of each Tab and Use Conditional Show Sheet
For 1st Tab
=RIGHT(NOW(),2)<=20
For 2nd Tab
=RIGHT(NOW(),2)>20 and RIGHT(NOW(),2) <= 40
For 3rd Tab
=RIGHT(NOW(),2) > 40 and RIGHT(NOW(),2) <= 60
Thanks a lot. It works
Thanks a lot. It works
Gysbert, I want to put more time, for example 1 minute to go to the next tab.
How Could I do that?
Tks.