@Anonymous
For tab control, you may not need 3 different variables. You can use one variable. It helps to manage easily.
When clicking on Pending tab, use Set(varTab,"Pending")
When clicking on Approved tab, use Set(varTab,"Approved")
When clicking on Rejected tab, use Set(varTab,"Rejected")
On control's visibility rules, you can mention the following formula:
varTab = "Pending" // This formula will show the control only when varTab variable value is set to Pending.
On clicking on the slice in the Pie Chart, you can write the following formuala:
Switch(PieChart1.Selected.Label,
"Pending",Set(varTab,"Pending"),
"Approved",Set(varTab,"Approved"),
"Rejected",Set(varTab,"Rejected"));
Navigate(TabScreen,Fade)
I hope this will be useful.
Please give a try and post here if you have any more questions.
Regards
Krishna Rachakonda
| If this reply helped you to solve the issue, please mark the post as Accepted Solution. Marking this post as Accepted Solution, will help many other users to use this post to solve same or similar issue without re-posting the issue in the group. Saves a lot of time for everyone. |