Please help. I am trying to work with two columns:
A Risk Category column which consists of High, Medium, and Low categories;.
And a Committed Closure Date column which, depending on the risk category, is the date by which the gaps must be closed.
Here is what I have which has not worked. The columns are already of the appropriate data types. Please help!!!
=IF ([Risk Rating]@row ="High", [Committed Closure Date]@row = TODAY(15),
IF ([Risk Rating]@row ="Medium", [Committed Closure Date]@row = TODAY(45),
IF ([Risk Rating]@row ="Low", [Committed Closure Date]@row = TODAY(60))))