Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi community,
How to removed the delimiter between this date format 04/11/2020 for have this format 20200411 ?
Have a good day and thanks !
Solved! Go to Solution.
Which date format did you input ? Also, before this new column... is your column formated as date ?
Get this new code:
Date.ToText([Column1], "yyyyMMdd")
I missed the upper double M.
It's not a problem, if null it will return null.
Which date format did you input ? Also, before this new column... is your column formated as date ?
Get this new code:
Date.ToText([Column1], "yyyyMMdd")
I missed the upper double M.
It's OK ! Thank you so much !
Expanding on what @camargos88 provided, when adding the new column, test for null
if [Date] <> null then Date.ToText ([Date], "yyyymmdd") else "Invalid Date"
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.