Forum Discussion

ClaffBilly's avatar
ClaffBilly
New Member
4 years ago

Power BI visible total using DAX Measures

Hi All,

Im trying to create a table where in i needed to add a specific value that are visible on the table and then adding that total into a new column on the same table, is that possible?
The value showing on the table is a DAX Measure. Below is the table.


The Blue box are the one that i wish to add, the green box is where i wish the total to be added.
Its ok to not show the breakdowns. I'm just trying to figure out on how to add the 4 values.

Here also is the DAX formula that i use in the July header to get the values.
Type: Wages is the Dax formula i use to get the value on t

 

Thank you in advance,
Billy


2 Replies

  • ClaffBilly , seem like you want to append row values, on way is create a table

     

    example

    union(
    summarize('Table',Table[Column],"Last 7 Days",[APP 7 Day],"Last 14 days",[APP 14 days],"last 21 Days",[APP 21 Days])
    summarize('Table',"Measure","Measure1 ","Last 7 Days",[Leads 7 Day],"Last 14 days",[Leads 14 days],"last 21 Days",[Leads 21 Days])
    )

     

    Here argument one is column in first summarize while static value in second.

     

    This table will not table slicer values, so they need part of this table to get filtered

     

    example

    https://community.powerbi.com/t5/Desktop/Grand-Total-in-Bar-Chart/m-p/612631

    https://community.powerbi.com/t5/Desktop/Traditional-Financial-Statements/td-p/7223

    • ClaffBilly's avatar
      ClaffBilly
      New Member

      Hi amitchandak,

      Thank you for the response, sorry im still confuse on where to put the sample dax formula you created. 
      By the way just to clarify, the formula under the "Type = Wage" is the formula  i used to return the values for the columns higlighted in blue, i need to get a formula on that part where i can summarize them.