Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Friends,
I am created a date table and converted into dd/mm/yyyy,
but here the requirement is need to get dd/mm/yyyy (day name) i am tried and mentioned below images.
getting into mm/dd/yyyy (day name ) how to get as dd/mm/yyyy (day name).
Please help me. how to write dax.
In matrix visual getting like this need to get dd/mm/yyyy (day name)
Solved! Go to Solution.
To format a date you can use
New Date = format([Date], "dd/mm/yyyy (dddd)")
For UK/India format of date, make sure your setting is correct
Hi @jay_patel ,
@selimovd 's and @amitchandak 's idea is great. I just modify your original DAX expression a little.
Date & Name=FORMAT('Date'[Date (bins) 2],"dd/mm/yyyy")&" "&"("&'Date'[DayName]&")"
Hope that's what you were looking for.
Best Regards,
Yuna
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hey @jay_patel ,
you can add a calculated column and use the format function. The following format should bring you the result you want:
Date and Name = FORMAT ( [Date], "M/D/YYYY (dddd)" )
To format a date you can use
New Date = format([Date], "dd/mm/yyyy (dddd)")
For UK/India format of date, make sure your setting is correct