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
Yes, I assumed your dates were type date. If they are text values, and really are "MM/DD/YYYY", first just change that column to type date. Then the list column expression should work.
--Nate
- Aj723 years agoFrequent Visitor
My apologies for this, I'm getting a cyclic reference error 🤔
= Table.AddColumn(#"Table 3 (Sheet1)", "Mo/Yr", each Date.MonthName([Leavers by date]) & " " & Text.From(Date.Year([Leavers by date])), type text)