Share via

Excel function/formula help

Anonymous
2023-01-08T08:41:33+00:00

I am hoping someone can tell me what is wrong with my formula. I have got the first part working but when I add the IF function, I cannot get it to work. I am very new to nested functions so I have quite likely done something very obviously wrong.

=B4& " " & A4 & " " & "(" & PROPER(C4) & ")", <br>IF(ISBLANK(D4)," works"," owns")
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

5 answers

Sort by: Most helpful
  1. Anonymous
    2023-01-08T12:55:36+00:00

    Hi Sarah P!

    You are very much welcome!

    Please, remember to give back to the community. Help the next person with this problem by rating and indicating if this conversation was helpful. Thank you

    Kind Regards, Shakiru

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2023-01-08T12:32:44+00:00

    Thank you

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2023-01-08T12:32:27+00:00

    Thank you so much!! The explanation and options were really helpful

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2023-01-08T09:34:40+00:00

    Hi Sarah P!

    the IF function is not nested corrected,

    The correct way to use this is either:

    =IF(ISBLANK(B4&" "&A4&" "&"("&PROPER(C4)&")")," works"," owns") if you want to display only works or own

    =B4& " " & A4 & " " & "(" & PROPER(C4) & ")"&IF(ISBLANK(D4)," works"," owns") if you want to get all (the value of B4, A4, C4 AND WORKS (if D4 is empty) OR OWN if not

    Kind Regards, Shakiru

    Was this answer helpful?

    0 comments No comments
  5. riny 20,870 Reputation points Volunteer Moderator
    2023-01-08T09:31:04+00:00

    Change the formula to:

    =B4& " " & A4 & " " & "(" & PROPER(C4) & ")"**&**IF(ISBLANK(D4)," works"," owns")

    Was this answer helpful?

    0 comments No comments