Hi,
I need help with finding a way to automate the RYG balls so that if no dates are input, it's white. If the first date is input, it's red. If the second date is input, its yellow. And if the final date is input, it's green.
Thank you !
Try something like this.
=IF(AND(ISBLANK([Welcome Email]@row); ISBLANK(Signed@row); ISBLANK(Cosigned@row)); ""; IF(ISDATE(Cosigned@row); "Green"; IF(ISDATE(Signed@row); "Yellow"; IF(ISDATE([Welcome Email]@row); "Red"))))
The same version but with the below changes for your and others convenience.
=IF(AND(ISBLANK([Welcome Email]@row), ISBLANK(Signed@row), ISBLANK(Cosigned@row)), "", IF(ISDATE(Cosigned@row), "Green", IF(ISDATE(Signed@row), "Yellow", IF(ISDATE([Welcome Email]@row), "Red"))))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Hope that helps!
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
Wow! It works perfectly!
Many thanks
Excellent!
Happy to help!
I'm sorry to have another question, perhaps you can advise me why when I changed the order and updated the form's names, the ball doesn't change to green when the welcome email date is present?
You can see in the photo, the blank, gray and yellow work, but not green.
=IF(AND(ISBLANK([Welcome Email]@row), ISBLANK([TPSA Signed]@row), ISBLANK([Counter Signed]@row)), "", IF(ISDATE([Counter Signed]@row), "Yellow", IF(ISDATE([TPSA Signed]@row), "Gray", IF(ISDATE([Welcome Email]@row), "Green"))))
I changed it to RGYG
Thank you
It is the order in which you have your conditions. Once it comes across it's first true value, it stops evaluating. So if yellow and green are both true, but yellow comes first, it will trigger a yellow response, but if green comes first in your formula, it will trigger a green response. Try working your formula in order of priority...
=IF(ISDATE([Welcome Email]@row), "Green", IF(ISDATE([Counter Signed]@row), "Yellow", IF(ISDATE([TPSA Signed]@row), "Gray", "")))
I saw that Paul answered already!
Let me know if I can help with anything else!
Andrée
I have a dashboard that has a report widget and I was wondering, can that widget also show the documents attached to a row so you can click on them or is that only in the sheet?
Is there a way to prevent a shared user from seeing the data in the "View Detail" option? I'm trying to make sure that when a user is given access to view a report, they can only view the columns present in that report. The view might only show certain columns but the user can then click on the record as shown below and…
I have a project sheet with a Gantt chart where the timescale headings are not aligning with my project’s fiscal year and start/end dates. Configuration: - Primary heading: Quarters (displaying as Q4 2026) - Secondary heading: Months (MMM format) - Fiscal year start: February 2 - Week start: Sunday - Project start date:…