Multiple Conditional Formula is Fubar

Aimee S.

Board Regular
Joined
Sep 28, 2010
Messages
236
Office Version
  1. 365
Platform
  1. Windows
Please help if you can! I greatly appreciate it.

Need a formula that would do the following:

Look at C4 and if value there does not equal "ISP & OSP - PRC" *and* there is no value in either N4 or M4, make C4 blank.

Conversely, if C4 has value that does not equal "ISP & OSP - PRC" and there *is* a value in either N4 or M4, have C4 show that value.

There will never be a value in both N4 and M4.

:p
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
If you enter a formula in C4 that refers to C4 you will get a circular reference error.

You would need to use code or set Iterations to 1 to avoid that error.
 
Upvote 0
Gah! That was a typo on my part. SO sorry :(

Formula to be contained in J4.

Look at C4 and if value there does not equal "ISP & OSP - PRC" *and* there is no value in either of cells N4 or M4, make J4 blank.

Conversely, if C4 has value that does not equal "ISP & OSP - PRC" and there *is* a value in either N4 or M4, have J4 show that value.

There will never be a value in both N4 and M4.
 
Upvote 0
Possibly (untested)

=if(and(c4<>""ISP & OSP - PRC",n4="",m4=""),"",if(n4="",M4,n4))
 
Upvote 0
I removed the extra left-most quote and this worked perfectly :) TY!!!!!!
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,843
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top