Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Performing Date format dd/mm/yyyy in Measure

i Have a date colum as format as mm/dd/yyy but i need to create a measure as dd/mm/yyyy

i wrote a dax 

Measure=FORMAT(VALUES(date[date]),"dd/mm/yyyy") 
please help me.
 
Thanks
Godasu
3 REPLIES 3
Anonymous
Not applicable

Measure = FORMAT(VALUES('date'[date]);"dd/mm/yyyy")
 
This works for me. The only difference i can spot is the ' ' around date and the ; instead of ,
You might want to try it.
Anonymous
Not applicable

Measure = FORMAT(VALUES('date'[date]);"dd/mm/yyyy") thsi forula working fine but only came single date.. but i need to display all dates

note : in my database date field  having column nota measure 

 

Thanks

Godasu

What data type is your measure and 'date'[date]?  If they're actually dates and not text, you should be able to set the data type in the Modeling tab.  I've done this instead of using FORMAT DAX code.

 

If it's type Date, I suggest setting Format to d/MM/yyyy.  This would show 27/11/2019.  If you set it to *d/MM/yyyy it will probably show 11/27/2019 when report is published online.  Do you specifically need dd/ instead of d/?

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.