Forum Discussion
bdaodu
4 years agoNew Member
DAX formulas
Please help. I have a table that looks like this and woud like to calculate the following: 1. DAX formula to calculate $ for AA as % of total $ for each project. 2. DAX formula to calculate $ fo...
- 4 years ago
Hey bdaodu ,
this measure
Measure 1 = DIVIDE( SUM('Table'[$] ) , CALCULATE( SUM( 'Table'[$] ) , ALL( 'Table'[WBS Level 2] ) ) )returns what you are looking for, for the 1st formula:
Use the formatting optionHopefully, this provides what you are looking for.
Regards,
Tom
bdaodu
4 years agoNew Member
Thank you!! It worked!
TomMartens
4 years agoSuper User
Hey bdaodu ,
please mark an answer as solution, this will help others, looking for a similar solution.
Regards,
Tom