Share via

IF function Help

Anonymous
2018-04-28T14:12:32+00:00

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".

Microsoft 365 and Office | Excel | For home | Windows

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.

0 comments No comments

Answer accepted by question author

Anonymous
2018-04-28T21:16:32+00:00

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"))

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

9 additional answers

Sort by: Most helpful
  1. Anonymous
    2018-04-28T20:03:52+00:00

    It is working for me. What isn't working for you?

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2018-04-28T16:46:18+00:00

    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.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2018-04-28T16:23:31+00:00

    Thank you so much for your help.

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2018-04-28T16:12:28+00:00

    This will do it:

    =IF(J5>0,"Owing",IF(J5<0,"Owing","Paid Up"))

    Was this answer helpful?

    0 comments No comments