Forum Discussion
Aj72
3 years agoFrequent Visitor
Join Month Name with Year
I have a DD/MM/YYYY column; I want to extract & concatenate Month Name & YYYY into a new column. Can this be completed in one fell swoop? So new column, Month Name, " ", YYYY.
Anonymous
3 years agoNot applicable
= Table.AddColumn(PriorStepOrTableName, "Mo/Yr", each Date.MonthName([Date]) & " " & Text.From(Date.Year([Date])), type text)
--Nate
- Aj723 years agoFrequent Visitor
Thanks watkinnc, however I'm getting an error in the new column. I'm wondering if it is to do with the original date column being in 'ABC123' format - 01/04/2022?