cell formula

  • Thread starter Thread starter rslc
  • Start date Start date
R

rslc

I have a cell formula i want to modify so it says "YES" if today is a
monday and "No" if today is any other day of the week.
=IF(B9="","YES","NO") at this stage it works if B9 is not empyy is
this possible?


thanks

rslc
 
Hi,

How about this

=IF(WEEKDAY(B9)=2,"Yes","No")
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 
Back
Top