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

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

Reply
Moji_mook
Frequent Visitor

Power BI : Allocate Fee from EngagementNo to Another EngagementNo

Power BI: My objective is to allocate fee from engagement to others engagement.

 

Table engagement

EngagementNo | fee | Alocate_to | Amount

001                     5000      002           500

002                     4500

 

The results I want should look like

EngagementNo | fee | Alocate_to | Amount | results

001                     5000        002           500 4500

002                     4500                        5000

 

EngagementNo 001 that has 5000 should subtract 500 and get 4500 as results. EngagementNo 002 should get more 500 to get result of 5000 from EngagementNo 001

 

 

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @Moji_mook ,

You can create a calculated column as below to get it, please find the details in the attachment.

Results = 
VAR _eno = 'Table'[EngagementNo]
VAR _aloamount =
    CALCULATE (
        SUM ( 'Table'[Amount] ),
        FILTER ( 'Table', _eno = 'Table'[Alocate_to] )
    )
RETURN
    'Table'[fee] - 'Table'[Amount] + _aloamount

vyiruanmsft_0-1695608473351.png

Best Regards

Community Support Team _ Rena
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
v-yiruan-msft
Community Support
Community Support

Hi @Moji_mook ,

You can create a calculated column as below to get it, please find the details in the attachment.

Results = 
VAR _eno = 'Table'[EngagementNo]
VAR _aloamount =
    CALCULATE (
        SUM ( 'Table'[Amount] ),
        FILTER ( 'Table', _eno = 'Table'[Alocate_to] )
    )
RETURN
    'Table'[fee] - 'Table'[Amount] + _aloamount

vyiruanmsft_0-1695608473351.png

Best Regards

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

Thank you for the solution! It works perfectly. Do you have any Ideas if I have a column period and I want to alocate only in same period.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Top Solution Authors