A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Here is what I changed it to if the above doesn't work for you:
=IF([@Balance]>0,"Owing",IF([@Balance]<0,"Credit","Paid Up"))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Can someone help me figure out what the formula is for this question.
In cell K5, enter a nested IF function that produces the result “Owing” if the value of cell J5 (Balance) is greater than 0 (zero), “Credit” if the Balance is less than 0, and “Paid Up” otherwise.
It is suppose to look like this in the "Status".
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Here is what I changed it to if the above doesn't work for you:
=IF([@Balance]>0,"Owing",IF([@Balance]<0,"Credit","Paid Up"))
It is working for me. What isn't working for you?
I actually tried your formula and it is still not properly working for me.
This is what I get. But this is what I need to get.
Thank you so much for your help.
This will do it:
=IF(J5>0,"Owing",IF(J5<0,"Owing","Paid Up"))