Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Domino1
Contributor II
Contributor II

If statements and variables expression used in script load editor ?

 Hello,

Here is my expression on a table.  How to rewrite so it is calculated on load editor instead ?

 vFY = 2023 

 MonthNum1 = 09

 

If(Sum({<[Fiscal Year]={'$(vFY)'},$(s_MonthNum1)>} Sales  ) > 0, '',


If(Sum({<[Fiscal Year]={'$(vFY0)'},$(s_MonthNum1)>}Order )

/Sum({<[Fiscal Year]={'$(vFY0)'},$(s_MonthNum1)>} Equipment ) >= .8, 'FY'&Right($(vFY0),2),  '    '))  

Labels (4)
3 Replies
Or
MVP
MVP

Generally speaking, replace your set analysis with Where conditions in the load script - Where Fiscal Year = 2023 and Month = 09. If() and sum() syntax otherwise stays the same. You may need to add a Group By by whatever dimensions you're using on the front end.

Domino1
Contributor II
Contributor II
Author

....