Excel Date Formula

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

Can I write a formula to check a cell reference to see if
the date it contains is more than 120 days before today?
 
Hi
try
=IF(A1<TODAY()-120,"more than 120 before today","within 120 days")
if A1 is the cell to check
 
Hi,

I thought you all seem like excel gurus so i would like to ask you
question. What i want to do is for my discount cell to produce a £1 o
a £0 depending on the application date in cell 'C' (which is displaye
as 01/10/2004 etc) using an IF formula. I really appreciate your help.

Thanks,

Jack
 
Hi
maybe something like
=IF(C1<DATE(2004,2,1),0,1)
and format this cell as currency (will give you a discount if you have
applied prior to Feb-01-2004
 
Back
Top