Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
marco_puccetti
Partner - Creator
Partner - Creator

Show\Hide Tabs

Hello, i need to know how to hide the application tabs.

Thanks

Marco

1 Solution

Accepted Solutions
Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

Do you want to hide the tabs permanently?

If yes then

Document Properties > General > Check Hide Tabrow

If not do let the community know

View solution in original post

8 Replies
qlikmsg4u
Specialist
Specialist

Document Properties > General > Check Hide Tabrow

PrashantSangle

Hi,

Document Property->General -> check Hide Tabrow

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

Do you want to hide the tabs permanently?

If yes then

Document Properties > General > Check Hide Tabrow

If not do let the community know

vardhancse
Specialist III
Specialist III

if based on use login if want to display we can use OSUSER(NTNAME) so that only given users can see the tabs/sheet

Frank_Hartmann
Master II
Master II

You can use two macros:

Sub HideTabRow
Set DocProp = ActiveDocument.GetProperties
DocProp.ShowTabRow=false
ActiveDocument.SetProperties DocProp
End Sub

Sub ShowTabRow
Set DocProp = ActiveDocument.GetProperties
DocProp.ShowTabRow=True
ActiveDocument.SetProperties DocProp
End Sub

hope this helps

Anonymous
Not applicable

if you want to hide all the tabs you can do it as suggested above.

If you want to conditionally show and hide sheets . you can go to Sheet properties then General Tab and under Show sheet you will get Condition radio button. You can write your expression here.

you can also use text boxes and give the same show condition here, if you want to show the sheet name on top instead of Tabrow

Thank

BKC

Not applicable

Hi Frank,

I wouldn't recommend macros for something that is possible with native functionality within QlikView. Tabs can be conditionally set to show/hide based on variables or other logic. So no need for a macro to do this.

Maybe have a read of this blog post by HIC

Macros are Bad

hope that helps

Joe

marco_puccetti
Partner - Creator
Partner - Creator
Author

Thanks

Marco