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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to restrict measure inside dimension - table - qliksense

I have an requirement of restrict measure if completed is 100% then dimensions should show blank.

2 Replies
dwforest
Specialist II
Specialist II

That would require each dimension to be an If() statement and a measure since you are conditioning it on a measure:

If(Sum(need)/sum(done)=1, dimension,'')

What you posssibly want to do is only show rows that are incomplete?

Add a measure with set expression - Only({$<[key field]={"=Sum(need)/sum(done)=1"}>} [key field])

Anonymous
Not applicable
Author

Dear David,

Thank you for your Reply.

I no need to hide whole row.