Hi, I'm just trying to combine two string columns together into one date column.
For example:
First column called "Month" is a string column with MAR
Second column called "Year" is also a string with 2024
Solved! Go to Solution.
What is your end expected result? For example if you want a Date data type in this case, what would be the day if you were to put these together?
Otherwise, you can just use a Formula to do [Month]+" "+[Year]
I want the output to be Date. That formula does not work for a date output. The day can be 01
I want the output to be Date. That formula does not work for a date output. The day can be 01
That works great! Thanks so much for your time.
Happy to help!