Hi, all. I was looking to write a formula that would change a RYG based on if the project was still on track for the determined amount of time. It would start green and if the project was projecting as running longer than anticipated would change to yellow and then red when it went over a further threshold(of say %7 of the net days allotted). I wanted it to be based off of a user inputting their best guess of a percentage that the project is complete. So logically I thought I would take the NETWORTHDAYS(TODAY(), [Due Date]) and compare that to NETWORTHDAYS([Start Date],[End Date]) * [User Guess] and I'm having no luck. Any opinions on my code? Thank you much for taking the time!
=IF(NETWORKDAYS(TODAY(), [End Date]1) > NETWORKDAYS([Start Date]1, [End Date]1) * [Guess]1, "Green", IF(NETWORKDAYS(TODAY(), [End Date]1) < NETWORKDAYS([Start Date]1, [End Date]1) * [Guess]1, "Yellow", IF(NETWORKDAYS(TODAY(), [End Date]1) < NETWORKDAYS([Start Date]1, [End Date]1 + NETWORKDAYS([Start Date]1, [End Date]1 * %7, "Red")))