Forum Discussion
Calculated Column
- 4 years ago
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/
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/
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
- VahidDM4 years agoSuper User
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/