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
4 years agoSolution Sage
Hi Anonymous,
The solution could be again on iterating those dates and then adding up. A variation of the formula already provided would do it.
In case you wanted further help, please provide enough details to reproduce your scenario.