Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
User | Count |
---|---|
9 | |
2 | |
2 | |
2 | |
2 |