Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 49 | |
| 38 | |
| 31 | |
| 30 |