formula to alert if expiring within 40 days

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

HI,

I am currently using a conditional formula that will tell me when a field
with a date input will expire with the current month.
the formula I am currently using
is:=IF(DATE(YEAR(G11),MONTH(G11),1)<TODAY(),G11+ROW()/10^10,"")

but i was trying to find something that would tell me of a date expires with
40 days, no matter if this is the current month or not.

thanks for your help.
Markitos
 
:=IF(G11<TODAY()+50,G11+ROW()/10^10,"")

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Sorry 40, not 50

:=IF(G11<TODAY()+40,G11+ROW()/10^10,"")

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top