Very new to Dax so to me this is complicated problem made worse by the data structure. I'm trying to subtract Operating spend from Operating Budget but they are in the same column and need to be compared for the same timeframe so it seems to me that multiple filters will need to be applied for the program to know what value on what row. I think a measure I can show in the report is sufficient. Any help is appreciated. Sample below. Thanks!
Hi,
You would essentially need to use Unpivot Columns under Power Query Editor which would Unpivot the Values under the specified Column, Load the Table and then Calculate the Difference. But Since, You wanted DAX Expression for this, Please use the below mentioned DAX Expression and let me know if the same is working Correctly.
Table1:= CALCULATETABLE(Table, Table[Metric_Name]="Operating Budget") Table2:= ADDCOLUMNS(CALCULATETABLE(Table, Table[Metric_Name]="Operating Spending"),"",CALCULATE(SUM(Table1[Value])-[Value],TREATAS(VALUES(Table[Timeframe_Range]),Table[Timeframe_Range]))
Create Two new Tables with the Following Expression. The Second Table should be the result Table.
Best Regards,
Vignesh M
If what I suggested worked for you feel free to Drop a "Kudos" and Consider to "Accept as Solution" if I solved your Issue 🙂
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
97 | |
76 | |
42 | |
30 | |
30 |
User | Count |
---|---|
134 | |
95 | |
78 | |
47 | |
39 |