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
- 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!