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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
anindya_manna
Creator II
Creator II

How to extract date when sales value reach exactly 100k?

Hello Experts,

I am creating a chart with the columns id ,name ,sales,100K break date.I want to show id and names whose sells more than or equal to 100k and also the aook break date in which it exactly touch 100k milestone.

How to do it in a single table?

23 Replies
anindya_manna
Creator II
Creator II
Author

See its not working

anindya_manna
Creator II
Creator II
Author

Data.Assume sales limit by 1000

YoussefBelloum
Champion
Champion

only({<Id={"=aggr(sum([Sales Amount]),Id,Name,[Process Date])=THE VALUE YOU WANT"}>}[Process Date])

anindya_manna
Creator II
Creator II
Author

PFA

Its not working.

anindya_manna
Creator II
Creator II
Author

Nope.Can you please check the qvw I attached?

anindya_manna
Creator II
Creator II
Author

PFA

YoussefBelloum
Champion
Champion

the solution above on the QVW attached..

maybe I'm missing something ?

you want to display on a column the dates with SUM(Measure)>= a value ?

anindya_manna
Creator II
Creator II
Author

This is my Test Data

   

IdNameProcess DateSales Amount
1xxx1/1/2018200
1xxx1/2/2018200
1xxx1/3/2018200
1xxx1/4/2018200
1xxx1/5/2018200
1xxx1/6/2018200
1xxx1/7/2018200
2YYY1/1/2018300
2YYY1/2/2018300
2YYY1/3/2018300
2YYY1/4/2018300
2YYY1/5/2018300
2YYY1/6/2018300
2YYY1/7/2018300

I want to display this

   

IdNameSales AmountBreak Date
1xxx14001/5/2018
2YYY2100

1/4/2018

Please find the attached QVW and plese help me to get exact code.

jyothish8807
Master II
Master II

try this:

I have taken 1000 as bench mark.

Br,

KC

Best Regards,
KC
sasiparupudi1
Master III
Master III

Try this

rangesum(Above(Sum([Sales Amount]),1,NoOfRows(TOTAL)))

If(rangesum(Above(Sum([Sales Amount]),1,NoOfRows(TOTAL)))=1000,[Process Date])