Forum Discussion
viralpatel21
5 years agoHelper II
Measure Grand total not matching
Hello team, i have created a measure where the grand total should be £96656.89 but im getting a different grand total. This is my measure : GBPConverstion = var convertgbp = CALCULATE( SUM...
- 5 years ago
Please try this to get the correct total. It references your existing measure. Use it in place of your current measure in the visual.
New GBPConversion = SUMX(VALUES('Date'[Month]), [GBPConversion])
Regards,
Pat
mahoneypat
5 years agoMicrosoft Employee
Please try this to get the correct total. It references your existing measure. Use it in place of your current measure in the visual.
New GBPConversion = SUMX(VALUES('Date'[Month]), [GBPConversion])
Regards,
Pat
viralpatel21
5 years agoHelper II
Thank you for this. That did work.
However i really didnt want to call it to another measure. Is there a way, where i could have it all in one measure?