Multiple condition formula help needed

Alex D

New Member
Joined
Apr 28, 2020
Messages
48
Office Version
  1. 365
Platform
  1. Windows
I am having a really hard time trying to write a formula in column E....what I am trying to do is have the formula look at D, first, and based on what is in D, then either look at B or C...I wrote my desired result in the cells in Column E...I also want to see blanks if either D, B or C are blank, but it has to start with a look at D first, then from there B or C but have blanks if needed


1675280342299.png
 

Attachments

  • 1675280080733.png
    1675280080733.png
    24.2 KB · Views: 1

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Try:
Excel Formula:
=IF(D9="ICR",IF(B9="","",IF(B9>30,0,1)),IF(D9="RESI",IF(C9="","",IF(C9>30,0,1))))
 
Upvote 1
How about
Excel Formula:
=IF(D9="ICR",IF(B9="","",IF(B9>30,0,1)),IF(D9="RESI",IF(C9="","",IF(C9>30,0,1)),""))
 
Upvote 1
Solution

Forum statistics

Threads
1,214,646
Messages
6,120,720
Members
448,986
Latest member
andreguerra

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