March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello guys,
This code is giving date in format yyyy.mm.dd = Text.From(Date.Year(DateTime.LocalNow())-2)&"."&Text.End("0"&Text.From(Date.Month(DateTime.LocalNow())),2)&"."&Text.End("0"&Text.From(Date.Day(DateTime.LocalNow())),2)&"."
I want date in format dd.mm.yyyy so i made following changes -
Text.From("0"&Text.From(Date.Day(DateTime.LocalNow())),2)&"."&Text.End("0"&Text.From(Date.Month(DateTime.LocalNow())),2)&"."&Text.End(Date.Year(DateTime.LocalNow())-2)&"."
Now i am getting an error "we cannot convert the value 2 to type text ".
Will you please check what's wrong with my code.
Solved! Go to Solution.
Please try this instead
= Date.ToText(Date.From(DateTime.LocalNow()), "dd.MM.yyyy")
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Please try this instead
= Date.ToText(Date.From(DateTime.LocalNow()), "dd.MM.yyyy")
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Thanks for the Reply
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
34 | |
30 | |
20 | |
19 | |
12 |