Forum Discussion
JimSeymour
Mar 11, 2022Copper Contributor
Is it possible to format dates before today to say "Now"
I have a sheet with dates in one column. I want to be able to sort on this column - but I also want dates before Today() to display as "Now". Is this possible? Obviously, I can manually replace th...
- Mar 11, 2022A2 is a cell with a date
Conditionally format with a formula: =$A2<TODAY()
Custom formatting code: "NOW"
Patrick2788
Mar 11, 2022Silver Contributor
A2 is a cell with a date
Conditionally format with a formula: =$A2<TODAY()
Custom formatting code: "NOW"
Conditionally format with a formula: =$A2<TODAY()
Custom formatting code: "NOW"
- JimSeymourMar 11, 2022Copper Contributor
Patrick2788 Perfect! Thanks.