Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape 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.
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
Solved! Go to Solution.
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
Best Regards
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
Best Regards
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.
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Check out the November 2024 Power BI update to learn about new features.
User | Count |
---|---|
9 | |
6 | |
3 | |
3 | |
2 |