Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.