Forum Discussion
Add a value within a measure manually
- 3 years ago
vbis Maybe:
FY23 July = VAR __Sum = SUMX('FY23 Targets',[Revenue June FY22]*(1+'FY23 Targets'[MoM %])) RETURN IF(__Sum = 0, 10000, __Sum) - 3 years ago
vbis This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
vbis This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
Thank you again Greg_Deckler! It worked