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

Expression for Unit Price * Qty

HI All,

Need help about how to create expression unit price * qty ? the formula should be calculate for each row.

So when I sum total sales will be correct not (sum of unit price).

Please advice.

Thanks

Henry

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

Honestly I do not understand the problem, use a straight table (use a dimension) and add the following expression:

Sum([UNit Price] * qty)

Why doesn't it work?

Let me know

View solution in original post

5 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Honestly I do not understand the problem, use a straight table (use a dimension) and add the following expression:

Sum([UNit Price] * qty)

Why doesn't it work?

Let me know

Colin-Albert

Can you post an example of your data?

sum([unit price] * qty) will work provided each data row has both unit price & qty values

otherwise try   sum([unit price]) * sum(qty)

SunilChauhan
Champion
Champion

only([unit price]) * only(qty)

Sunil Chauhan
Not applicable
Author

yes it worked, my bad wrong exp that I used

Thanks anyway.

Not applicable
Author

hi ,

sum([unit price] * qty) (or) only([unit price]) * only(qty) both are correct answers Because it works on row bases  ...but sum([unit price]) * sum(qty) gives different answer ....summation done on individual field (i.e Column wise )