Forum Discussion
Measure total is not correct
- Anonymous4 years ago
Hi mh2587 ,
Please try calculating the value of the total column separately.
SUMX(ALLSELECTED(table),[Customer Deliveries])
Use ISINSCOPE() function to determine whether it is a total column and return different value.
measure = IF(ISINSCOPE([Column filed]),[Customer Deliveries],SUMX(ALLSELECTED(table),[Customer Deliveries]))
If I misunderstood your meaning, please share some sample data and expected result.
Best Regards,
Jay
Single Table Sales_transaction
columns : Customer Key , Document type , Net Amount
Dax :
Hi mh2587 ,
Please try calculating the value of the total column separately.
SUMX(ALLSELECTED(table),[Customer Deliveries])
Use ISINSCOPE() function to determine whether it is a total column and return different value.
measure = IF(ISINSCOPE([Column filed]),[Customer Deliveries],SUMX(ALLSELECTED(table),[Customer Deliveries]))
If I misunderstood your meaning, please share some sample data and expected result.
Best Regards,
Jay