Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to assign zero to a specific qlikview variable in a macro script?
ActiveDocument.Variables("YourVariable").SetContent 0, true
Edit: On the other hand - do you really need a macro? You can use action.
HI
sub test
ActiveDocument.Variables("vTest").SetContent 0, true
end sub
Hope that helps