Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I'm sure this is super easy but I'm brand new to BI and DAX language.
I have following example
Invoice Amt
1 281.02
2 189.52
3 1,983.14
I want to create a measure that will make percent of total. 281.02/2,453.68
Currently I'm getting 100% I should get 11% for invoice 1. Not sure what is wrong in my formula but something must be.
Any help would be much appreciated. Thanks
Solved! Go to Solution.
@rlingua2234 add following measure and change format to %.
% of GT = DIVIDE( SUM( Table4[Amt] ), CALCULATE( SUM( Table4[Amt] ), ALL( table4 ) ) )
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@rlingua2234 add following measure and change format to %.
% of GT = DIVIDE( SUM( Table4[Amt] ), CALCULATE( SUM( Table4[Amt] ), ALL( table4 ) ) )
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Thanks so much
User | Count |
---|---|
139 | |
70 | |
68 | |
52 | |
52 |
User | Count |
---|---|
210 | |
92 | |
64 | |
59 | |
56 |