Hello,
I'm looking for a good formula to collect the number of remaining days to work.
This works fine:
=IF(OR([Assigned to]110 = "User1", [Assigned to]110 = "User2"), [Closing date]110 - TODAY(), "0")
but If I want to add one more condition like at row status it doesn't works:
=IF(AND((OR([Assigned to]110 = "User1", [Assigned to]110 = "User2"), [Closing date]110 - TODAY(), "0"), (Status110 = "Completed", "0", IF(Status110 = "Not Started", "0", IF(Status110 = "Hold", "0"))))
Thanks for your help
Olivier