Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
ClaffBilly
New Member

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.

ClaffBilly_0-1641886114075.png


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

ClaffBilly_1-1641886272958.png

 

Thank you in advance,
Billy


2 REPLIES 2
amitchandak
Super User
Super User

@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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.   

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors