Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, i have a measure in qlik which divides eg: the quantity / price. The problem is that the total in a table is showing the value wrong, but if i take for example row by row and sum this measure output up the total is the correct one, also when i put it in a KPI card it`s showing the wrong value. What can i also tell you about these two field is that they were in two separates tables, on which i performed a join based on ID. If you could help me solve this would be perfect.
Do you have NA values?
Hello, no NA values found actually.
Actually looking there are some NULL values which i found, could be from this?
Oui, excluez les dans le set analysis
You may need a nested aggregation like:
avg(aggr(sum(quantity) / sum(price), Dim1, Dim2))
whereby Din1 and Dim2 are placeholder for the needed dimensionality in which the calculation should be performed (usually the object-dimensions).