Feb 28 2024 01:35 AM - edited Feb 28 2024 01:58 AM
Hi, I guess this should be simple but I have been trying to figure out this for quite a while a cannot get it right.
I want to format a color of a cell (red) based on time passed between the date put in one cell (last time speaking with someone) and today. If the difference is larger than 18 months I want the cell to be colored.
thanks in advance!
Feb 28 2024 01:43 AM
SolutionFeb 28 2024 01:57 AM
@SergeiBaklan Thank you, that worked! You just probably saved me from mental breakdown 😄
Feb 28 2024 02:21 AM
@Vojtch575 , you are welcome
Jul 02 2024 10:40 AM
Jul 03 2024 02:19 AM
Depends on what exactly you'd like to highlight. For example
=TODAY()-$A1 > 20
to highlight dates which are more than 20 days in past.
Feb 28 2024 01:43 AM
SolutionConditional formatting rule formula could be like
=EDATE($A1,18) <= TODAY()