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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
PowerBI_Noob90
Frequent Visitor

Combining Text & Date in Power Query

I'm using Power Query to combine a text column with a date column (I use [Text Column]&" "&[Date Column]) and am getting an error message that says I can't combine & and a column with a date format.  Seems straightforward enough but there's another table where I do the exact same thing and it works fine.  What are the possible reasons as to why the one works and the other doesn't?

2 REPLIES 2
Anonymous
Not applicable

Try

 

[Text Column]&" "&Date.ToText([Date Column]))

 

--Nate

BA_Pete
Super User
Super User

Hi @PowerBI_Noob90 ,

 

I can only assume that in your table where it works, your date is not actually formatted as Date Type.

Use this in a custom column:

 

[Text Column] & " " & Text.From([Date Column])

 

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors