The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Goodday,
I have a CSV file withe a data-time field witch has the format (Jan 12, 2024 @ 19:39:03.793).
Is there a way to convert this format to a DD-MM-YYYY, HH:MM:SS ?
Solved! Go to Solution.
DateTime.ToText(
DateTime.FromText("Jan 12, 2024 @ 19:39:03.793", [Format = "MMM dd, yyyy '@' HH:mm:ss.fff"]),
[Format = "dd-MM-yyyy, HH:mm:ss"]
)
DateTime.ToText(
DateTime.FromText("Jan 12, 2024 @ 19:39:03.793", [Format = "MMM dd, yyyy '@' HH:mm:ss.fff"]),
[Format = "dd-MM-yyyy, HH:mm:ss"]
)
I can't find the DateTime.ToText function in dax
@Roost1969 it's Power Query forum. By default you are requesting a help with M, not DAX.