Forum Discussion
Trouble with my Date Alert Fomula
This unfortunately does prior date range + or -. So example
2/3/19
2/4/19
/2/5/19
Where $G$3 = 4 it would mark all 3 days with that range.
I only need it to mark upcoming dates, if that makes sense.
- SergeiBaklanFeb 04, 2019Diamond Contributor
If only upcoming days when like
assuming today is Feb 05. Correct?
- SergeiBaklanFeb 04, 2019Diamond Contributor
JakeZimmerman , for such data you may apply conditional formatting rule
with formula
=($D4<(TODAY()+$G$4))*($D4>TODAY())
and applying custom format to dates as
mm/dd/yy"<<<"
Or use only mark in next column with formula
=IF(($D4<(TODAY()+$G$4))*($D4>TODAY()),"<<<","")
File is attached
- JakeZimmermanFeb 04, 2019Copper Contributor
Exactly,
So in my spreadsheet I have a column with dates in it, and to the right of the column I need a way to mark if those dates are coming up in the next X amount of days, but with my formula I made, it only does exact dates. I tried to use <= with it to do 3 days or less, but then it marks 3 days prior to today as well.