Forum Discussion
How to compute ROI at Pivot table ?
Hi All
I seek help on create expression for ROI at Pivot table :-
My PBI file :-
https://www.dropbox.com/s/jiidvq50bebyn73/COMPETITOR_V010%20Compute%20ROI.pbix?dl=0
Paul
Please use this measure ROI:= Divide(AMT NET_PROFIT_A_TAX_C,AMT REVENUE_C,0)
5 Replies
- parry2k
Super User
Anonymous add new measure using following DAX
ROI = DIVIDE ( SUM ( COMP[AMT NET_PROFIT_A_TAX_C] ), SUM ( COMP[AMT REVENUE_C] ) )I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
- Singaravelu_R
Resolver III
Please use this measure ROI:= Divide(AMT NET_PROFIT_A_TAX_C,AMT REVENUE_C,0)
- amitchandak
Super User
- amitchandak
Super User
Seem like Answer is already give by parry2k .
- AnonymousNot applicable
Hi All
Thank you very uch for all your help , it work fine.
Paul