View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
Lars-Åke Aspelin[_2_] Lars-Åke Aspelin[_2_] is offline
external usenet poster
 
Posts: 913
Default Comparison Formula

For this to work you have assumed that E2 always holds a name of a day
and is never blank. That was not stated but can of course be true.

If that is the case, this formula is even shorter:

=IF(LEFT(E2,1)="S","F","T")

Lars-Åke


On Sat, 31 Jan 2009 15:04:20 -0600, "Fred Smith"
wrote:

If you want the formula shorter, I expect you could use:

=if(or(e2="Saturday",e2="Sunday"),"F","T")

Regards,
Fred.

"Savio" wrote in message
...
I have a day entered in cell E2, and i am trying to write a formula to
return "T" if E2 is any value from Monday-Friday and "F" if not.

=IF(E2=OR("Monday","Tuesday","Wednesday","Thursday ","Friday"),"T","F")

Could you tell me what's wrong with the above formula and how to
correct it.

thanks