Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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.