Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
kistler
Contributor II
Contributor II

How to activate "hide Tabrow" in the scripts

Hello,

I didn't found how to activate in a macro the functionality hide or show the tabrow.

I thank you for your help

Martin

1 Solution

Accepted Solutions
maneshkhottcpl
Partner - Creator III
Partner - Creator III

Hi,

Please use the following code and refer the attached document.







Sub SheetHide()
set v = ActiveDocument.Variables("Sh02")''first create the variable named Sh01
if v.GetContent.String = "0" then
v.SetContent 1,true
else' var = 1 then
v.SetContent "0",true
end if
End sub





View solution in original post

3 Replies
maneshkhottcpl
Partner - Creator III
Partner - Creator III

Hi,

Please use the following code and refer the attached document.







Sub SheetHide()
set v = ActiveDocument.Variables("Sh02")''first create the variable named Sh01
if v.GetContent.String = "0" then
v.SetContent 1,true
else' var = 1 then
v.SetContent "0",true
end if
End sub





kistler
Contributor II
Contributor II
Author

Great!

Thanks Manesh

maneshkhottcpl
Partner - Creator III
Partner - Creator III

Hi,

Please verify as an answer.