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: 
asmithids
Partner - Creator II
Partner - Creator II

Set Analysis - Previous Dates

Hello,

I have a fairly simple set expression where I need to sum all payment amounts prior to the current month. I have the following expression to do that but, I'm not getting any data.  When I remove the "less than sign" from the month set, I get numbers.  Cleary, the "less than sign" on the month set is the problem but, I don't know why. 


Has anyone solved this problem?  I've checked the Community and see that what I have scripted seems to be correct but, it's not working. 

Sum({$<Year={$(=Max(Year))}, Month=“<$(=Month(Today()))"}>}PaymentAmount)

Thank you in advance for any help!! 

1 Solution

Accepted Solutions
achettipalli
Creator
Creator

Hi Alec,

This returns the sum of all payments of the recent year prior to current month.

=sum({$<Year={"$(=Max(Year))"},Month={"<$(=Max(month(today())))"}>}PaymentAmount)

good luck!

Avinash

View solution in original post

3 Replies
achettipalli
Creator
Creator

Hi Alec,

This returns the sum of all payments of the recent year prior to current month.

=sum({$<Year={"$(=Max(Year))"},Month={"<$(=Max(month(today())))"}>}PaymentAmount)

good luck!

Avinash

asmithids
Partner - Creator II
Partner - Creator II
Author

That worked!  Thanks Avinash!

achettipalli
Creator
Creator

Glad it helped.

Cheers!