Collecting a date value if not blank
I am trying to combine two columns into one. The only way I can think of doing this is with an IF formula. what I have is
=IF([Ready for Final Review Initial]@row = 0, [Ready for Final Review Reapp]@row, [Ready for Final Review Initial]@row)
It works for collecting my secondary value, but does not work for the initial column if not blank. All three columns properties are date value.
Best Answer
-
When you say combine two columns, you don't mean have both dates in one column right? Based on your initial formula it looks like you want to pull the date from the "Ready for Final Review Initial" column and if that column is blank, to pull the date in the "Ready for Final Review Reapp" column instead.
If that's correct, try this
=IF(ISBLANK([Ready for Final Review Initial]@row), [Ready for Final Review Reapp]@row, [Ready for Final Review Initial]@row)
Because your "Ready for Final Review Initial" column is a date having a 0 doesn't make sense. So the formula has been updated to say if the column is blank then return the value in the "Ready for Final Review Reapp" column, if it's not blank than return the value in the "Ready for Final Review Initial" column.
Answers
-
When you say combine two columns, you don't mean have both dates in one column right? Based on your initial formula it looks like you want to pull the date from the "Ready for Final Review Initial" column and if that column is blank, to pull the date in the "Ready for Final Review Reapp" column instead.
If that's correct, try this
=IF(ISBLANK([Ready for Final Review Initial]@row), [Ready for Final Review Reapp]@row, [Ready for Final Review Initial]@row)
Because your "Ready for Final Review Initial" column is a date having a 0 doesn't make sense. So the formula has been updated to say if the column is blank then return the value in the "Ready for Final Review Reapp" column, if it's not blank than return the value in the "Ready for Final Review Initial" column.
-
Shoot, I even tried the ISBLANK function but apparently did not have enough coffee that morning. This makes sense and is working properly.
-
@Spencor_Luze The coffee thing is super relatable. I'm glad it's working for you now.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!