Is there a better way than using a nested "IF" statement to test value in D5 and return value of E5 if a correct value in D5 is found?

blbat

Active Member
Joined
Mar 24, 2010
Messages
338
Office Version
  1. 2016
  2. 2013
Cell D5 may contain the text strings of "Window XP", "Windows 2003", "Windows 2008', "Windows 10". or it may contain something completely irrelevant.


=IF(D5="Windows XP",E5,IF(D5="Windows 2003",E5,IF(D5="Windows 2003 R2",E5,IF(D5="Windows 2003 R2",E5,IF(D5="Windows 2008",E5,IF(D5="Windows 10",E5,"ZERO"))))))



That nested IF formula works fine, but is there a "better" way? (i.e., faster, or cleaner)
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
One option would be like
=IF(OR(D5="Windows XP",D5="Windows 2003",D5="Windows 2003 R2"),E5,"ZERO")
 
Upvote 0
Another option.

=IF(OR(D5={"Windows XP","Windows 2003","Windows 2003 R2"}), E5, "ZERO")
 
Upvote 0
Thanks Gents.

I figured there was a way to work an array formula...I just couldn't draft it up.
 
Upvote 0
Neither of the formulas suggested are array formulas.:eek:
 
Upvote 0
doesn't the "curly brackets" with C/S/E make it an array? if not I am using the wrong terminology.
 
Upvote 0
The values in the curly brackets are an 'array' but the formula isn't an array formula so doesn't need to be entered with CTRL+SHIFT+ENTER.
 
Upvote 0

Forum statistics

Threads
1,214,601
Messages
6,120,460
Members
448,965
Latest member
grijken

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