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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
samvile18
Creator III
Creator III

Why won't this work...

...can anyone tell me why this won't work?

=sum({<Measure={'FUM'},FExtractDate={'$(=MonthEnd(MaxDate))'}>}Value)

MaxDate is a date field along with FExtractDate - I need to sum the FUM value where these two match.

11 Replies
Miguel_Angel_Baeyens

Sam,

Depending on the date values, it should be something like this

If(Measure = 'FUM' AND FExtractDate = MonthEnd(MaxDate), Sum(Value))

or

Sum(If(Measure = 'FUM' AND FExtractDate = MonthEnd(MaxDate), Value))

Hope that helps.

Miguel

samvile18
Creator III
Creator III
Author

Neither of these are working so I'm beginning to think there must be an issue with the formatting of the dates