Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I am looking to convert two dates to link them. One date is in 'MMM-YYYY' format, i want to keep this format. The second date im pulling from excel is in mmm-yy format(Checked it form Format Cells- Custom). Any help on how i can convert it into MMM-YYYY. Ive tried Date#(Date#(TransMonthYr,'mmm-yy'), 'MMM-YYYY'). Doesnt seem to be working, any hints ?
The best way is convert both the dates as same format
Date(Date#(TransMonthYr,'mmm-yy'), 'MMM-YYYY')
Hi,
Date(Date#(TransMonthYr,'MMM-YY'), 'MMM-YYYY').
Regards