View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Pete_UK Pete_UK is offline
external usenet poster
 
Posts: 8,856
Default today function in an "if" formula

If you want to keep that date in a recognisable format, try it this
way:

IF(TODAY()--"11/14/2008",1,0)

Hope this helps.

Pete

On Nov 13, 4:10*pm, RainyDay
wrote:
I tried to make a formula that would return a 1 only if today is past a
certain date. I tried
=IF(TODAY()11/14/2008,1,0)
but it returns a 1 irregardless of what date I put in the formula. Where did
I go wrong?