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.
I have a table with 3 Columns
Name Total Missed
a 598 194
b 35 8
I'd like to create a 4th column to show the percentage of Missed against Total
Like this
Name Total Missed %Missed
a 598 194 32.4
b 35 8 22.8
I'm sure this is easy but as a new PowerBi user I'm struggling with this. Not sure whether I need to create a new measure and if so, how. Help greatly appreciated.
Thanks
Solved! Go to Solution.
Hi @Steve1309
You can create a Calculated Column. Something like the below:
Column =
VAR _1 = Table[Missed] / Table[Total]
RETURN
IF ( _1 = 0 , 0 , _1 )
Then just click the percentage % button in the main ribbon.
Hopefully this helps!
Theo
If I have posted a response that resolves your question, please accept it as a solution to formally close the post.
Also, if you are as passionate about Power BI, DAX and data as I am, please feel free to reach out if you have any questions, queries, or if you simply want to connect and talk to another data geek!
Want to connect?www.linkedin.com/in/theoconias
Thank you so much. I think I tried everything but the simplest solution!
Hi @Steve1309
You can create a Calculated Column. Something like the below:
Column =
VAR _1 = Table[Missed] / Table[Total]
RETURN
IF ( _1 = 0 , 0 , _1 )
Then just click the percentage % button in the main ribbon.
Hopefully this helps!
Theo
If I have posted a response that resolves your question, please accept it as a solution to formally close the post.
Also, if you are as passionate about Power BI, DAX and data as I am, please feel free to reach out if you have any questions, queries, or if you simply want to connect and talk to another data geek!
Want to connect?www.linkedin.com/in/theoconias
Thank you so much. I think I tried everything but the simplest solution!
@Steve1309 no trouble at all mate. DAX can be very complex, but it can also be very simple. All the best with your Power BI journey! 🙂
If I have posted a response that resolves your question, please accept it as a solution to formally close the post.
Also, if you are as passionate about Power BI, DAX and data as I am, please feel free to reach out if you have any questions, queries, or if you simply want to connect and talk to another data geek!
Want to connect?www.linkedin.com/in/theoconias
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
69 | |
68 | |
40 | |
29 | |
26 |
User | Count |
---|---|
88 | |
49 | |
45 | |
38 | |
37 |