Hi all. I'm trying to re-create a spreadsheet calculation (attached photo). It's pretty simple except for the fact that the percentage needs to only calculate where the dimension = "High". In the screenshot you can see that the cell formula specifically calls out that subtotal line for division by the grand total. I am familiar with the DAX expression to DIVIDE where CALCULATE is used with ALLSELECTED, but I don't know how to hard-code that dimension filter into the expression.
Solved! Go to Solution.
Hi bgarland ,
Try measure below and check if it can meet your requirement:
Resukt = CALCULATE ( aggregation, Table[dimension] = "high", ALLSELECTED ( Table[Column] ) )
Regards,
Jimmy Tao
Hi bgarland ,
Try measure below and check if it can meet your requirement:
Resukt = CALCULATE ( aggregation, Table[dimension] = "high", ALLSELECTED ( Table[Column] ) )
Regards,
Jimmy Tao
That should work. Thanks!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
178 | |
67 | |
65 | |
57 | |
55 |
User | Count |
---|---|
184 | |
103 | |
89 | |
75 | |
72 |