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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
hey,
i have an problem to convert simple text to a date since today, and i dont know why. (it worked till yesterday)
i have the following rows / dax formula:
This is the row i need to convert. If i change the format, i get an error. (text to date not possible)
So, i used these formulas to extract part of the dates and put it together.
Jahr = PATHITEM(SUBSTITUTE(StandardVerkauf[Verkaufsvorgang.Vorgangsdatum];"-";"|");1)
Monat = PATHITEM(SUBSTITUTE(StandardVerkauf[Verkaufsvorgang.Vorgangsdatum];"-";"|");2)
Datum = StandardVerkauf[Monat] & "." & StandardVerkauf[Jahr]
Jahr = Year, Monat = Month, Datum = Date (translation)
This results in this
The row Datum is set to Date Format and it worked perfectly till today. When i now update / refreseh my dataset, i get the following error for the column Datum.
Translation: The Value "." of type text can not be converted to the type date.
Same if i try to convert only the year.
Datum = StandardVerkauf[Jahr]
Same error.
Can someone help me please? 🙂
Solved! Go to Solution.
Hi @DennisJung,
You can use power query date functions to split the date column, add a custom column to store them.
Sample:
#"Added Custom" = Table.AddColumn(#"Renamed Columns", "Year", each Date.Year([Created])),
#"Added Custom1" = Table.AddColumn(#"Added Custom", "YearMonth", each Date.ToText([Created],"yyyy.MM"))
Reference link:
Regards,
Xiaoxin Sheng
Hi @DennisJung,
You can use power query date functions to split the date column, add a custom column to store them.
Sample:
#"Added Custom" = Table.AddColumn(#"Renamed Columns", "Year", each Date.Year([Created])),
#"Added Custom1" = Table.AddColumn(#"Added Custom", "YearMonth", each Date.ToText([Created],"yyyy.MM"))
Reference link:
Regards,
Xiaoxin Sheng
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 51 | |
| 42 | |
| 23 | |
| 21 |
| User | Count |
|---|---|
| 137 | |
| 113 | |
| 52 | |
| 37 | |
| 31 |