Back
I have an issue where I'm trying to get a date value out of 2 columns. One has int values in the '2017" format and the other has 'April' as the 2nd. How can I combine them to create a "2017-04-0000" date?
The best option available is to use the dateparse formula. That way you can combine your separate fields and create a new datestamp.
Create the calculated field as follows, note here I have made the day the 1st of the month you could change this to suit your purpose:
dateparse('ddMMMMyyyy', '01'+[Manufacture Month]+str([Manufactured year]))
Refer to this link here for more details
31k questions
32.8k answers
501 comments
693 users