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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
damirm86
Partner - Contributor III
Partner - Contributor III

Show certain row based on input value

Hi

I have a table looking like this:

Capture.PNG

I want to only show the row where column "Accumulated %" is the same as the value in TargetCoverage, in this case 95%.

My current expression in "Accumulated %" looks like this:

rangesum(above(total sum(DSP_ORD_VOL2)/Sum(TOTAL <[Supplier No]>(DSP_ORD_VOL2)),0,Key))

2 Replies
Anil_Babu_Samineni

May be this?

If(

rangesum(above(total sum(DSP_ORD_VOL2)/Sum(TOTAL <[Supplier No]>(DSP_ORD_VOL2)),0,Key)) = $(TargetCoverage),

rangesum(above(total sum(DSP_ORD_VOL2)/Sum(TOTAL <[Supplier No]>(DSP_ORD_VOL2)),0,Key)))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
damirm86
Partner - Contributor III
Partner - Contributor III
Author

I have already tried that one without result unfortunately...