This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA 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.
Hi All,
Wondering if anyone can help me with the error. I am trying to write a if statement that will output the what is already shown, while the fixing the european formatted date. Pleae see below for the data set, the outcome, and the function. I must be missing something, if anyone can help that would be awesome.
Thanks in advance.
Solved! Go to Solution.
The 'Any' datatype isn't a particularly useful one if you can avoid it.
I suspect there's an implicit conversion to date going on for some of the values that have double figures for day but it can't convert the single figure days.
If you can get the column in text format first (quite early in the Steps) (and maybe pad the start for single figure days) you'll have a better chance.
I think you might have to look at the 2nd 'if' clause (it's different than the first) also.
And it might have been better if you had provided the DateStarted column and type since that's the one that's in the formula.
Insert ths statement
= Table.AddColumn(Source, "Custom", each if Text.Contains([DateStarted],"/") then Date.From([DateStarted]) else if Text.Contains([DateStarted],"-") then #date(Number.From(Text.Split([DateStarted],"-"){2}),Number.From(Text.Split([DateStarted],"-"){1}),Number.From(Text.Split([DateStarted],"-"){0}))
else null, type date)
Thanks, but the statement didn't work for me.
The 'Any' datatype isn't a particularly useful one if you can avoid it.
I suspect there's an implicit conversion to date going on for some of the values that have double figures for day but it can't convert the single figure days.
If you can get the column in text format first (quite early in the Steps) (and maybe pad the start for single figure days) you'll have a better chance.
I think you might have to look at the 2nd 'if' clause (it's different than the first) also.
And it might have been better if you had provided the DateStarted column and type since that's the one that's in the formula.
Thank you, adding the extra step to make the column text works. For some reason it didn't work, maybe I was doing something wrong.
Sorry about the screen shot, I made a copy of it, so I could put it in a screen shot together.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.