Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
cranium144
Creator
Creator

Force Selection in Set Analysis

Good day.  I'm attempting to force a field selection with Set Analysis.  The field is [Past Due], and the selection is "PD".  Then I'm wanting to sum up the open orders (field [SO Open Qty]).  Here is what I have.

The goal is to have this as a Dimension on a pivot.

=Sum({$<[Past Due]={$(=Only('PD'))}>} [SO Open Qty])

In my expression for this pivot, I'm doing the math to see where I go negative by day.  Like this:

OH - RangeSum(Before(sum([SO Open Qty]),0, ColumnNo())) - (insert the Past Due syntax here)

Any help would be appreciated.

Labels (1)
3 Replies
sunny_talwar

Try this

RangeSum(Before(Sum({<[Past Due] = {'PD'}>} [SO Open Qty]), 0, ColumnNo()))
cranium144
Creator
Creator
Author

=sum({<[Past Due] = {'PD'}>} [SO Open Qty])

 I tried the above to start, but it doesn’t appear to be paying attention to the forced ‘PD’ selection.  It’s returning zero.  If I select dates in the past, then it gives an answer.

sunny_talwar

Would you be able to share a sample to show the issue?