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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Gou303
Regular Visitor

Displaying Grand Total & AVG to a table in Power BI

Hi community!

 

I'm working with a report in Power BI, and I'm looking to display the average & sum at the end of the table as new row.

Sum - Enabled " Total " 

AVG - ? 

DateSalesOrdersValueOrdersManual Orders
05/07/202110091.141 €3745
08/07/202220011.05 €7351
03/03/202320211.171 €8149
03/09/20233028.535 €3745
01/05/20234009.709 €4055
TotalSumSumSumSum
AVG ????

 

Info: values are coming from Calculated Measures other than the Date column ,

Is  there any solutions to display AVG with Total values Or just AVG row at the bottom of the table ? 

I've gone through some posts in the community, but I haven't come across a solution that fits my specific requirement.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Gou303,hello amitchandak, thank you for your prompt reply!

As far as I known, we can only choose one of these ways to aggregate data as shown below:

vyajiewanmsft_0-1723802239418.png

As a workaround, we recommend that you create another summary table that displays both the totals and the averages, and then place it below the first table visual to achieve a similar effect to displaying the averages at the bottom of the table:

SummaryTable =
UNION(
SUMMARIZE(
'Table',
"Category", "Total",
"Sales", SUM('Table'[Sales]),
"OrdersValue", SUM('Table'[OrdersValue]),
"Orders", SUM('Table'[Orders]),
"Manual Orders", SUM('Table'[ManualOrders])
),
SUMMARIZE(
'Table',
"Category", "AVG",
"Sales", AVERAGE('Table'[Sales]),
"OrdersValue", AVERAGE('Table'[OrdersValue]),
"Orders", AVERAGE('Table'[Orders]),
"Manual Orders", AVERAGE('Table'[ManualOrders])
)
)
We can also change the color of the column headings to the same color as the background color to hide the column headings:

vyajiewanmsft_1-1723802655314.png

Best regards,

Joyce

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi  @Gou303,hello amitchandak, thank you for your prompt reply!

As far as I known, we can only choose one of these ways to aggregate data as shown below:

vyajiewanmsft_0-1723802239418.png

As a workaround, we recommend that you create another summary table that displays both the totals and the averages, and then place it below the first table visual to achieve a similar effect to displaying the averages at the bottom of the table:

SummaryTable =
UNION(
SUMMARIZE(
'Table',
"Category", "Total",
"Sales", SUM('Table'[Sales]),
"OrdersValue", SUM('Table'[OrdersValue]),
"Orders", SUM('Table'[Orders]),
"Manual Orders", SUM('Table'[ManualOrders])
),
SUMMARIZE(
'Table',
"Category", "AVG",
"Sales", AVERAGE('Table'[Sales]),
"OrdersValue", AVERAGE('Table'[OrdersValue]),
"Orders", AVERAGE('Table'[Orders]),
"Manual Orders", AVERAGE('Table'[ManualOrders])
)
)
We can also change the color of the column headings to the same color as the background color to hide the column headings:

vyajiewanmsft_1-1723802655314.png

Best regards,

Joyce

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

@Gou303 , Check if this approach can help

https://medium.com/@amitchandak/power-bi-add-grand-total-row-in-the-bar-visual-44c3d1d463be

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

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

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.