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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
arvindjha2050
Creator
Creator

Dynamic Variables

Hello,

I would like to create a variable with varying conditions depending on the month of the quarter, i have used below formulae for the same in Data Load editor:

if Mod(Month(Today()),3)=0 then

Set vTest = Sum({$<[Projection.Period]={'$(=Max([Projection.Period],2))'}>} [Projection.Projection]) ;

elseif Mod(Month(Today()),3)=1 then

Set vTest = Sum([Projection.Projection]);

else

Set vTest = Sum({$<[Projection.Period]={'$(=Max([Projection.Period]))'}>} [Projection.Projection) ;

end if;

I have used these variables in application but it's not working except for the part where set analysis is not there

Why set analysis cannot be computed in if statement?

Thanks,

Arvind

8 Replies
sunny_talwar

Try this

if Mod(Month(Today()),3)=0 then

Set vTest = Sum({@<[Projection.Period]={'@(=Max([Projection.Period],2))'}>} [Projection.Projection]) ;

elseif Mod(Month(Today()),3)=1 then

Set vTest = Sum([Projection.Projection]);

else

Set vTest = Sum({@<[Projection.Period]={'@(=Max([Projection.Period]))'}>} [Projection.Projection) ;

end if;

SET vTestFinal = "=Replace($(vTest), '@', '$')";

agigliotti

give a try with the below syntax:

LET vTest = 'Sum( {< [Projection.Period]={' & chr(39) & chr(36) & '(=Max([Projection.Period])) ' & chr(39) & '} >} [Projection.Projection])';

arvindjha2050
Creator
Creator
Author

This is not working.

Set analysis works while creating a measure and giving it a formula.

But i want this measure to have a dynamic value using set analysis.

arvindjha2050
Creator
Creator
Author

This is not working.

Set analysis works while creating a measure and giving it a formula.

But i want this measure to have a dynamic value using set analysis.

agigliotti

what is not working?

could you share a sample qvf?

arvindjha2050
Creator
Creator
Author

Can you help on how to upload sample file as there are only image and video upload options.

agigliotti

try searching for advanced editor option somewhere...i already did it so I can't see that option anymore...

sunny_talwar

May be try the approach which Stefan talks about here

Expression as a variable with $-sign expansion