Forum Discussion

jason5703's avatar
jason5703
Icon for Helper I rankHelper I
6 years ago

Budget vs Spend measure question

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!

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    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 :)