Good Morning!
I am merging two tables using a Union tool, and after the merge condensing the data a bit. Each of the tables have duplicate information, but with different column names (ie OPENING_DTE, Formatted Open Date, and Open Date - all to represent the opening date of a building). I have a handful of other columns that I can combine easily with the formula tool, but for some reason the date column is giving me problems. I tried changing the date types around between Date, DateTime and V_String and cannot get the values to copy. I'm using the below expression in the formula tool:
IF [OPENING_DTE] = Null() THEN [Open Date] ELSE [OPENING_DTE] ENDIF
Trying to copy the values from "Open Date" to the "OPENING_DTE" column. Currently the "Open Date" column is a V_String, and the OPENING_DTE column is in DateTime
| | OPENING_DTE | Open Date |
| Building A | 6/3/2011 | |
| Building B | 2/5/1985 | |
| Building C | (Null) | 8/6/2004 |
| Building D | (Null) | 5/21/2018 |
Thank you!