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
Anonymous
Not applicable

How to make my Net Profit amount display at last row of P&L Table ?

Hi All

My P&L have 2 expression :-

(1) For Rev COSG and Exp

(2) For net Profit 

I need to combine the above 2 into 1 table.

 
 
 
 

net profit.png

 
 

My PBI file :-

https://www.dropbox.com/s/q1viboqgbkbow0w/GL_%20TDS%20v0008.pbix?dl=0

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , You have to create a display table like this

summarize(
union(Table, Table[GL CODE], Table[cost center] , Table[Cost Name], "Amount", sum(Table[Amount])),
union(Table, "GL CODE", "564", "cost center" , 4 , "Cost Name" , [Net profit], "Amount", sum(Table[Amount]))
)

 

You can add other fields which you want to filter and join back with dimension tables.

Also refer: 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

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , You have to create a display table like this

summarize(
union(Table, Table[GL CODE], Table[cost center] , Table[Cost Name], "Amount", sum(Table[Amount])),
union(Table, "GL CODE", "564", "cost center" , 4 , "Cost Name" , [Net profit], "Amount", sum(Table[Amount]))
)

 

You can add other fields which you want to filter and join back with dimension tables.

Also refer: 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
Anonymous
Not applicable

Hi Amit

thank you for share the link , it is very helpful

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