Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi team,
I'm having two calculated columns -
- Completed Journey
- Total Journey
I just wanted to write Dax to calculate percentage as below -
PercentShow = 'Journey'[completed journey]/Journey'[completed journey]
Or
PercentShow = Divide('Journey'[completed journey],Journey'[completed journey],0)
But It is NOT calculating properly.
Need your help urgently on this please.
Regards,
Samrat
Hello sam_ach,
you must not use calculated columns to calculate percenteges because they add up in the end resulting in such high numbers.
You need to use a measure.
Divide(SUM('Journey'[completed journey]),SUMX(ALL(Journey),Journey'[completed journey]),0)
Maybe you don't need the ALL but I don't know what you actually are trying to achieve.
Here is a good article about the diffrence regarding calc columns & measures
If this post was helpful may I ask you to mark it as solution and give it some kudos?
Have a nice day!
BR,
Josef
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |