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: 
rajany089
Contributor II
Contributor II

Qlik Sense Filter Issue

Hi Team, 

I have a bar chart where i have to include just Day 1,3,7,14 and exclude >Day14 and FutureDate. below is my calculation. even after explicitly filtering out >Day14 and FutureDate. i still get >Day14 in my bar graph. 

when i manually select the Day 1,3,7,14 there is change in the data. Any help on this ?

 

Num(RangeSum(Above(COUNT(DISTINCT {<[Ready at Nth Day] ={'Day1', 'Day3', 'Day7', 'Day14'}>} item_number), 0, RowNo())) / COUNT(TOTAL <Effective_Month_Year>distinct item_number), '#,##0%')

Labels (3)
2 Replies
TauseefKhan
Creator III
Creator III

Hi @rajany089,

Check this one:

Num(
RangeSum(
Above(
COUNT(
DISTINCT {<[Ready at Nth Day] = {'Day1', 'Day3', 'Day7', 'Day14'}, [Ready at Nth Day] -= {">Day14", "FutureDate"}>}
item_number
),
0, RowNo()
)
) / COUNT(TOTAL <Effective_Month_Year> DISTINCT item_number),
'#,##0%'
)

***Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.***

rajany089
Contributor II
Contributor II
Author

Hi @TauseefKhan  Thank you for your help but it did not work.