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! Learn more

Reply
Anonymous
Not applicable

income statement matrix with amount and percentage columns

hi,

i need to produce an income matrix as follows:

2020-06-02_22-08-07.jpg 

i have the numbers to line up in the amount column (2nd from right). however, i need help to produce the % in the % column (last column on the right). the total income will be the (100%) base. i'd appreciate any help to resolve this.

krgds, -nik 

6 REPLIES 6
v-alq-msft
Community Support
Community Support

Hi, @Anonymous 

 

Based on your description, I created data to reproduce your scenario.

Income statement:

d1.png

 

You may create a measure as below.

Percentage = 
var _total = 
CALCULATE(
    SUM('Income statement'[Amount]),
    'Income statement'[Category] = "Total Income"
)
return
SELECTEDVALUE('Income statement'[Amount])/_total

 

Then you may use the matrix visual to display the result.

d2.png

 

Best Regards

Allan

 

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

Anonymous
Not applicable

hi @v-alq-msft ,

it looks really good.

since the items i listed in my original matrix graphics earlier are measures, i'm not sure how to use your suggested dax for percentage for them. i'd apprec further suggestion/guidance.

krgds, -nik

Hi, @Anonymous 

 

I'd like to suggest you use 'summerize' function to get a table with new columns which calculate with the logic of the measures. Then you may calculate based on the virtual table to get the result.

 

Best Regards

Allan

Anonymous
Not applicable

thank for your suggestion, @v-alq-msft .

 

i'll try that & revert as necessary.

krgds, -nik

amitchandak
Super User
Super User

@Anonymous , refer if this can help

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

many tks fr the suggested solutions in the weblink in your email reply, @amitchandak.

tho ghuiles' suggested weblink to biccountant.com website seems most relevant to my issue, i probably will delve into that later as it may require me to re-do my data modelling (which may b quite tedious too). 

the issue is not so much in producing a traditional accounting statement using ms power bi. it's more on finding how to create a percentage column in a matrix in the fashion i described earlier. nonetheless, i'll study further those suggestions in the weblink you provided.

 

many tks again.
krgds, -nik

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.

Top Solution Authors