Thread: IF Formula
View Single Post
 
Old 09-20-2017, 03:22 PM
Logit Logit is offline Windows 10 Office 2007
Expert
 
Join Date: Jan 2017
Posts: 533
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

.
Presuming your data is in A1, paste this in B1 :

Code:
=IF(A1="","",(IF(A1="Y","5",IF(A1="NA","5",IF(A1="N","0")))))
The formula does not check for anything other than Y, 5 & 0. Anything else will
create a FALSE statement in B1. If A1 is blank, B1 will be blank as well.
Reply With Quote