Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am using a macro, I want to be able to make a listbox visible and invisible:
How do I reference(and set)
Show.Always
Show.Condition
for a Listbox ?
Thank in Advance !
Tim
That worked for me, thanks Deepak!
(I would still like to know how to reference those properties directly though)
check out this forum...
http://community.qlik.com/forums/t/36579.aspx
That worked for me, thanks Deepak!
(I would still like to know how to reference those properties directly though)
You can do it like this:
sub setlb01
set LB = ActiveDocument.GetSheetObject("LB01")
set boxprop=LB.GetProperties
boxprop.Layout.Frame.Show.Always = false
boxprop.Layout.Frame.Show.Expression.v = "sum(Sales)>4000"
LB.SetProperties boxprop
end sub
Thank You
That worked for me too! A great way to control the show condition via macro.