Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Date Type with Day

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?

2 ACCEPTED SOLUTIONS
jennratten
Super User
Super User

Hello - this should do it...

Table.AddColumn(entity, "Custom", each Date.ToText(Date.From(DateTime.FixedLocalNow()), "ddd MMM d yyyy"), type date)

jennratten_1-1649926401881.png

 

View solution in original post

Anonymous
Not applicable

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)

 

View solution in original post

5 REPLIES 5
jennratten
Super User
Super User

Hello - this should do it...

Table.AddColumn(entity, "Custom", each Date.ToText(Date.From(DateTime.FixedLocalNow()), "ddd MMM d yyyy"), type date)

jennratten_1-1649926401881.png

 

Anonymous
Not applicable

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:

ianmacleod_0-1649936662929.png

 

Anonymous
Not applicable

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)

 

Anonymous
Not applicable

Perfect.  Thank you so much 😊

Great!  You're welcome!  Please accept the solution when you have a moment. 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors