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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Unknown_1
Frequent Visitor

Need Help in Power BI visualisation

Hi Team,

I have created this visual in power bi. I want to add the actuals which is a calculated measure against each of the business unit($m @ FY25 plan rate)

 

For eg against Lending what is the actual value of it and for Payments and so on.

How can that be achieved, appreciate your help.

 

1000295043.jpg

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Unknown_1 ,

I created some data:

If you want to calculate for each [business unit], you can consider placing the [business unit] in Column in the matrix visual and it will be calculated based on the grouping of fields placed in Row and Column.

vyangliumsft_0-1730943815758.png

Here are the steps you can follow:

1. Create measure.

I don't know your calculation logic, I created my own custom logic, [Plan%] to find the business unit grouping percentage of each Group, you can use filter() function in the measure to define the grouping logic calculation in it

Plan% =
DIVIDE(
    [Plan],
SUMX(FILTER(ALL('Table'),'Table'[Group]=MAX('Table'[Group])),[Value]))

2. Result:

vyangliumsft_1-1730943815763.png

If the above results do not meet your expectations, you can express the expected results in the form of a picture, we can better help you!

 

Best Regards,

Liu Yang

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

1 REPLY 1
Anonymous
Not applicable

Hi  @Unknown_1 ,

I created some data:

If you want to calculate for each [business unit], you can consider placing the [business unit] in Column in the matrix visual and it will be calculated based on the grouping of fields placed in Row and Column.

vyangliumsft_0-1730943815758.png

Here are the steps you can follow:

1. Create measure.

I don't know your calculation logic, I created my own custom logic, [Plan%] to find the business unit grouping percentage of each Group, you can use filter() function in the measure to define the grouping logic calculation in it

Plan% =
DIVIDE(
    [Plan],
SUMX(FILTER(ALL('Table'),'Table'[Group]=MAX('Table'[Group])),[Value]))

2. Result:

vyangliumsft_1-1730943815763.png

If the above results do not meet your expectations, you can express the expected results in the form of a picture, we can better help you!

 

Best Regards,

Liu Yang

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

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.