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

Can I Hide few tabs instead of all the tabs.

I have 4 tabs in my app.I want to show only 2 tabs intsead of all 4.I dont want to use any button to conditionally hide and show.

Is there any settings I can do in documnet properties or anywhere?

4 Replies
nicolett_yuri

No, only with conditions

jaimeaguilar
Partner - Specialist II
Partner - Specialist II

Hi,

you may go to sheet properties > show sheet > conditional > type a 0. So, you can hide those 2 tabs that you don't want to show without using buttons.

regards

andrewpettit
Partner - Creator
Partner - Creator

You can also use a variable value, expression, or both to drive the show condition.  This can be helpful when integrated with Section Access to create an app where different users see different tabs based on what groups they belong to or whatever configuration/profile data you load and associate to your users.

Not applicable
Author

A couple of ideas...

1) If you would always like them hidden, you can set the sheet properties > show sheet > conditional to 0.

2) If you would like to show ONLY to certain users (i.e. yourself or other developer users), something like the following:

       =if(osuser()='SOME\User',1,0)