This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi all,
I need to create calculated column in power bi as below:
Column =(col1-col2)/col2
Will appreciate your help.
Solved! Go to Solution.
Hi @sdhn
try this:
Column =
IF (
[col2] = 0,
BLANK (),
IF ( [col1] - [col2] < 0, 0, ( [col1] - [col2] ) / [col2] )
)
If my posts helps, please consider accepting them as solutions to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Thanks, great help
Hi @sdhn
Can you share a sample of your data in a text format?
BTW, try this:
Column =([col1]-[col2])/[col2]
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
If both columns have "0" value output come as NaN
Column =([0]-[0])/[0]
output is "NaN"
in one row I have value for column 1 = 13
column 2 = 0
Column =([13]-[0])/[0]
Out put is infinity
Sum values come in new column come as "NaN" & in one row value of New Column is "Infinity". Rest rows are fine. Any advise Thanks
Try this:
Column =IF([col2]=0,blank(),([col1]-[col2])/[col2])
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Great , thi ssolve the issue. One more request.
I am getting negative figures in few rows.
as -0.3 %. I want to display any "-" as '0'. Can you help on this too? thanks
I meant Just display 0 if there is any negative "-" number
Hi @sdhn
try this:
Column =
IF (
[col2] = 0,
BLANK (),
IF ( [col1] - [col2] < 0, 0, ( [col1] - [col2] ) / [col2] )
)
If my posts helps, please consider accepting them as solutions to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 7 | |
| 6 | |
| 6 | |
| 4 |