The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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") 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/?