Forum Discussion
Anonymous
4 years agoNot applicable
Problem with the grand total when using FIRSTNONBLANK function
Hi, I'm having a fact table, where from several reasons there are stored repeated numeric values in one column. I need each value only once, so instead of using SUM('Fact Sales Order'[Quantity]),...
- 4 years ago
Hi Anonymous,
Try this instead:
MEASURE = SUMX(VALUES('Fact Sales Order'[Quantity]),'Fact Sales Order'[Quantity])
Payeras_BI
Solution Sage
4 years agoHi Anonymous,
Try this instead:
MEASURE = SUMX(VALUES('Fact Sales Order'[Quantity]),'Fact Sales Order'[Quantity])
Anonymous
4 years agoNot applicable
Thank you so much, you saved me!