Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
nareshthavidishetty
Creator III
Creator III

Static logic

Hi,

How to make the below logic as static..like it wont reflect as per any filter selection.

num(((sum({$<AuditDate={'>=$(VSSSCurrMonthStart)<=$(vSSSYesterday)'}>}TOTAL PostedSales)

   -

   sum({$<AuditDate={'>=$(VSSSLastMonthStart)<=$(vSSSYesterdayLY)'}>}TOTAL PostedSales))

   /

   sum({$<AuditDate={'>=$(VSSSLastMonthStart)<=$(vSSSYesterdayLY)'}>}TOTAL PostedSales)),'#.##%')


Thanks..

1 Solution

Accepted Solutions
sunny_talwar

May be this:

Num(((Sum({1<AuditDate={'>=$(VSSSCurrMonthStart)<=$(vSSSYesterday)'}>}TOTAL PostedSales)

   -

   Sum({1<AuditDate={'>=$(VSSSLastMonthStart)<=$(vSSSYesterdayLY)'}>}TOTAL PostedSales))

   /

   Sum({1<AuditDate={'>=$(VSSSLastMonthStart)<=$(vSSSYesterdayLY)'}>}TOTAL PostedSales)),'#.##%')

You may also need to make the same modification within your variables if those are expressions too.

UPDATE: Would be able to share some details about those 6 variables?

View solution in original post

3 Replies
sunny_talwar

May be this:

Num(((Sum({1<AuditDate={'>=$(VSSSCurrMonthStart)<=$(vSSSYesterday)'}>}TOTAL PostedSales)

   -

   Sum({1<AuditDate={'>=$(VSSSLastMonthStart)<=$(vSSSYesterdayLY)'}>}TOTAL PostedSales))

   /

   Sum({1<AuditDate={'>=$(VSSSLastMonthStart)<=$(vSSSYesterdayLY)'}>}TOTAL PostedSales)),'#.##%')

You may also need to make the same modification within your variables if those are expressions too.

UPDATE: Would be able to share some details about those 6 variables?

PrashantSangle

write 1 instead of $ in set analysis.

or

try with nullify user possible selections

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
nareshthavidishetty
Creator III
Creator III
Author

Thanks..it working fine