Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello
Does anyone know if it is possible to use M code in PQE to create a date type column in the following format:
Thu Apr 14 2022
Please?
Solved! Go to Solution.
Hello - this should do it...
Table.AddColumn(entity, "Custom", each Date.ToText(Date.From(DateTime.FixedLocalNow()), "ddd MMM d yyyy"), type date)
This works for transforming an existing column:
Select: Add Column, Column From Examples, From Selection > with the current date column selected, then:
= Table.AddColumn(#"Duplicated Column1", "Custom", each Text.Combine({Date.ToText([Date Raised], "ddd"), " ", Date.ToText([Date Raised], "%d"), " ", Date.ToText([Date Raised], "MMM"), " ", Date.ToText([Date Raised], "yyyy")}), type text)
Hello - this should do it...
Table.AddColumn(entity, "Custom", each Date.ToText(Date.From(DateTime.FixedLocalNow()), "ddd MMM d yyyy"), type date)
Hi Jen
It does work, But.
I should have said that need to change the format for an existing column.
I have tried duplicating the column then incorporate the M code that you said, but, I must be doing something wrong.
= Table.TransformColumns(#"Duplicated Column1","Current Due Date DAY", each Date.ToText(Date.From(DateTime.FixedLocalNow()), "ddd d MMM yyyy"), type date)
I receive the following error:
This works for transforming an existing column:
Select: Add Column, Column From Examples, From Selection > with the current date column selected, then:
= Table.AddColumn(#"Duplicated Column1", "Custom", each Text.Combine({Date.ToText([Date Raised], "ddd"), " ", Date.ToText([Date Raised], "%d"), " ", Date.ToText([Date Raised], "MMM"), " ", Date.ToText([Date Raised], "yyyy")}), type text)
Perfect. Thank you so much 😊
Great! You're welcome! Please accept the solution when you have a moment.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.