IF statement based on a dropdown of options

jmneal

New Member
Joined
Jul 20, 2021
Messages
7
Office Version
  1. 365
Platform
  1. Windows
Hello, I am trying to figure out an If statement for the below formula. The dropdown option has a YES, NO, NEVER. If someone selects NEVER, I need it to return N/A. Any help would be appreciated. The "current occupancy" cell already has an if statement so that's why I am confused. Thank you

1664806730077.jpeg
 

Attachments

  • If Statement.JPG
    If Statement.JPG
    127.4 KB · Views: 5

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Your image doesn't give much info, but something like this will work:

Excel Formula:
=IF(G28="NEVER",NA(),FALSE)
 
Upvote 0
How about something like
Excel Formula:
=if(drop down cell ="Never","N/A",your formula)
 
Upvote 0
Both of these suggestions worked great. I appreciate the help!
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

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