Populate a date based on column status
Within the grid, there are 3 columns with dates that are updated by various teams. There is a 4th date column that I will need to read the other 3 columns and choose one based on what the "Status" column reads.
If the status@row is "Complete" or "Not applicable", then I will need the "Steve Report Date" column to pull the "Actual Completion" date.
If the Status@row is "in Progress", then I will need the "Steve Report Date" column to pull the "Revised Target Completion Date". Lastly,
If the Status@row is "Not Started", then I will need the "Steve Report Date" column to pull the "Target Completion". Lastly,
Below is the formula I am attempting, but keep getting an error. Any assistance with this formula is much appreciated!
"=IF(Status@row = "complete", [Actual Completion]@row, IF(Status@row = "Not Applicable", [Actual Completion]@row, [Target Completion]@row, IF(Status@row = "in Progress", [Revised Target Completion Date]@row)))"
Best Answer
-
Hey @GDMIL
Try this"
=IF(OR(Status@row = "Complete", Status@row = "Not Applicable"), [Actual Completion]@row, IF(Status@row = "In Progress", [Revised Target Completion Date]@row, IF(Status@row = "Not Started", [Target Completion]@row)))
Does this work for you?
Kelly
Answers
-
Hey @GDMIL
Try this"
=IF(OR(Status@row = "Complete", Status@row = "Not Applicable"), [Actual Completion]@row, IF(Status@row = "In Progress", [Revised Target Completion Date]@row, IF(Status@row = "Not Started", [Target Completion]@row)))
Does this work for you?
Kelly
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!