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: 
aevaristo
Contributor
Contributor

I want summarize a field only when another field is not active, is possible?

Hello everybody, i tried this '=if(GetCurrentSelections(O2P_cliente,False()),sum(SALDO),'')', but don't work. Please help-me.

3 Replies
swuehl
MVP
MVP

Try

=if( len(GetFieldSelections(O2P_cliente)),'', sum(SALDO) )

MayilVahanan

HI

Try like this

=If(GetSelectedCount(O2P_cliente) = 0,'', sum(SALDO) )

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
aevaristo
Contributor
Contributor
Author

Works both ways, thanks for the help.