Hi guyz,
What's the solution for this?
I know this fact:
If you apply conditions to a query, you are not changing any figures; you are just hiding the numbers that are not relevant for you. Conditions therefore have no effect on the values displayed in the results rows. The results row of a query with an active condition is the same as the results row of a query without this condition.
I'm just curious what could be the possible solution for this scenario?
Material | Sales | Prices |
---|---|---|
AAA | 100 | 10 |
BBB | 0 | 20 |
CCC | 500 | 30 |
TOTAL | 600 | 60 |
If I apply CONDITION on SALES to show values which are greater than zero (0), this will be the result..
Material | Sales | Prices |
---|---|---|
AAA | 100 | 10 |
CCC | 500 | 30 |
TOTAL | 600 | 60 |
The TOTAL in PRICES column will still be 60 since the value 20 was just hidden..How can I make it appear 40 without using the CALCULATE RESULT AS "TOTAL"?
Thank you!
Loed