Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
cristian_av
Creator III
Creator III

Filter Current Selection Except one Value

Hi

I need to filter the one value from a Sum, but considering the current selection.

Actually, I'm using the following set expression, that excluded the value (ExcludedValue), BUT ignores the current selection on the filter.


=Sum({$<[Tipo Registro]={Real},code_nombre={'*'} - {'ExcludedValue'}>}Pesos


How can I exclude the value without ignoring the current selection??


Thanks!!

1 Solution

Accepted Solutions
sunny_talwar

Try this

=Sum({$<[Tipo Registro]={Real},code_nombre -= {'ExcludedValue'}>}Pesos)

Note: Add the minus sign before the equal sign

View solution in original post

2 Replies
sunny_talwar

Try this

=Sum({$<[Tipo Registro]={Real},code_nombre -= {'ExcludedValue'}>}Pesos)

Note: Add the minus sign before the equal sign

cristian_av
Creator III
Creator III
Author

Thanks.. but it's not working.. that gives me another value.  (Not sure what means -= )

It is working.  A selection was set and because of that the value changes (As expected.. dumb of me)