Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
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
Great!
Thanks Manesh
Hi,
Please verify as an answer.