Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
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.