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

how to combine these two formulas:

Hi All,

i'm new to QlikView.

I'm trying to combine the following formulas:

formula 1, looks like this:

= sum  ( {$} total <store> amount )

this formula should sum the dimension "amount" of a "selected store"

formula 2, looks like this:

= sum ( {<TypeOfVoucher={ 'rectraction' }>}amount)

this formula shoud sum the dimension "amount" without selecting the "TypeOfVoucher".

Thanks in advance.

4 Replies
gussfish
Creator II
Creator II

Can you explain what you mean by "combine"? This simplest way to combine then is to add them together using '+', but I suspect that isn't what you mean...

Not applicable
Author

hi,

perhaps it's easier to explain it verbally.

i want to sum the amount of rectractions of an (in a Listbox selected) store, without selecting "rectracion" in the Listbox "TypeOfVoucher".

i hope the issue is now a little bit more  unterstandable.

Not applicable
Author

Dear Daniel,

you may try thsi exp

=Sum( {<TypeOfVoucher={ 'rectraction' },store= >} amount)

Not applicable
Author

hello yogesh,

thanks for your advice.