need help with formula

  • Thread starter Thread starter Brian
  • Start date Start date
B

Brian

in cell a1 i have one of four letters a b c or d
and in cell b1 i want the following:

if cell a1 = a then return "days"
if cell a1 = b then return "days"
"" = c then return "Evenings"
"" = d then return "Evenings"

what function do I use for this and how.

Thank You
Brian
 
in cell a1 i have one of four letters a b c or d
and in cell b1 i want the following:

if cell a1 = a then return "days"
if cell a1 = b then return "days"
"" = c then return "Evenings"
"" = d then return "Evenings"

what function do I use for this and how.

Thank You
Brian


Another way:

=CHOOSE((CODE(A1)-95)/2,"days","Evenings")


--ron
 
Back
Top