Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
Does anybody try this scenario how to store field name into variable , and use this variable like field in expression ?
e.g Suppose I have filed xyz , then I want to store this into vFld1 and in set analysis I want to use the vFld1 ,
vFld1 should same line xyz.
Vikas
SET vFld1 = xyz;
(or in variable overview, create the variable).
Then, in your chart expression
=Sum( [$(vFld1)] )
SET vFld1 = xyz;
(or in variable overview, create the variable).
Then, in your chart expression
=Sum( [$(vFld1)] )
Thanks