Copy a date to a cell only if there is not already a date there
I'm trying to capture a date from a cell to another cell only if the current cell is blank
Here is what I have so far:
=IF(ISBLANK([Proposed PROD Release Date]@row), "", IF(ISDATE([Proposed PROD Release Date]@row), [Proposed PROD Release Date]@row))
This formula is in [New date] cell but I only want this to occur if new date cell is not a date.
Any help would be great.
Frank Smith, PMP
Assistant Director | IT Special Projects Mgr.
Oregon Parks & Recreation Department
If my response helps, please mark it as an accepted answer. 😎
Best Answer
-
Hello @Frank.Smith
You won't be able to evaluate the same cell that you wish to put a formula in. However, if you add another Date column you can then evaluate the two columns and choose which Date you ultimately wish to use.
=IF(ISDATE([New date]@row), [New date]@row, IF(ISDATE([Proposed PROD Release Date]@row]), [Proposed PROD Release Date]@row))
Answers
-
Hello @Frank.Smith
You won't be able to evaluate the same cell that you wish to put a formula in. However, if you add another Date column you can then evaluate the two columns and choose which Date you ultimately wish to use.
=IF(ISDATE([New date]@row), [New date]@row, IF(ISDATE([Proposed PROD Release Date]@row]), [Proposed PROD Release Date]@row))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 305 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!