Forum Discussion
luke-s-1993
May 28, 2024Copper Contributor
Formula help
Hi, I am having a problem where I'm using a formula to change the colour of a cell based on a date: =AND(D6<>"", D6-TODAY()>=60) - Turns green =AND(D6<>"", D6-TODAY()>=1, D6-TODAY()<60) - Turns ...
JKPieterse
May 28, 2024Silver Contributor
Keep a single data type in a cell, if comments are needed, add a comments column.
- luke-s-1993May 28, 2024Copper ContributorI would but the person I'm doing this for needs to add what level certificate they have on with the date.
- JKPieterseMay 28, 2024Silver ContributorTry replacing the D6 in your formula with this: =1*INDEX(TEXTSPLIT(D6," "),1)
- luke-s-1993May 29, 2024Copper Contributor
the D6 at the begining is it so it will be:
=AND(=1*INDEX(TEXTSPLIT(D6," "),1)<>"", D6-TODAY()>=60) - Turns green
is that what you mean?
thanks.