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
Hi,
I've created a Power automate flow that has a Dax query to extract data from Power BI, however the date is being exported with time.
I tried using the format on the Dax query but it's not working, can anyone advise how I can format the date to '"dd/mm/yyyy" so that it exports it without time?
Many thanks
DAX query
Solved! Go to Solution.
hi @CSPedrao ,
try like:
DEFINE
VAR __DS0Core =
SELECTCOLUMNS(
SUMMARIZE(
'Missed_Bin_Attributes'[Date Closed] ),
"Date Closed",
FORMAT([Date Closed], "YYYY/MM/DD)
)
EVALUATE
__DS0Core
Why? Power Automate works on Datetime as well, as does Power BI. "Date" is just a format. not a data type.
@lbendlin I think that you have miss understood me but thank you for your comment anyway
hi @CSPedrao ,
try like:
DEFINE
VAR __DS0Core =
SELECTCOLUMNS(
SUMMARIZE(
'Missed_Bin_Attributes'[Date Closed] ),
"Date Closed",
FORMAT([Date Closed], "YYYY/MM/DD)
)
EVALUATE
__DS0Core
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 |
---|---|
123 | |
86 | |
73 | |
58 | |
52 |
User | Count |
---|---|
197 | |
133 | |
107 | |
69 | |
65 |