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.
Hi,
I have a date folumn with format YYYYMMDD. I tried to change its format to dd/mm/yyyy by creating new column using the dax formula:
If your column is type text, you can do it in the query editor with a custom column with this expression.
= Date.ToText(Date.From([Date]), "dd/MM/yyyy")
Pat
@kzielinska , try like
Date if blank = IF(ISBLANK([column]),blank() ,DATE(LEFT([column],4), MID([column], 5, 2), RIGHT([column], 2)) )
I get this error: An argument of function 'DATE' has the wrong data type or the result is too large or too small.