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)
=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)