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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
RH205
Helper I
Helper I

Dynamic format %, Number, and Date

Hi all! 

 

Question..what syntax does it need to show the correct "dd-mm-yyy" in the dynamic format option? decimal and percentage are fine, but the date is not..is there a solution?

 

RH205_0-1753694560557.png

 

RH205_2-1753694615151.png

 

 

1 ACCEPTED SOLUTION

Hi  @RH205 
Just a quick reminder that the engineer has already shared the recommended syntax for displaying dates in the dd-mm-yyyy format using the FORMAT()  function in DAX.

Example:

 

FormattedDate = FORMAT('YourTable'[DateColumn], "dd-mm-yyyy")

If the dynamic format option still isn't reflecting this as expected,

 

feel free to share where you're applying it (e.g., card, matrix,) so we can assist further.

View solution in original post

6 REPLIES 6
RH205
Helper I
Helper I

thanks, but this is not helping me. I read the documentation and used multiple formats, but it does not change..

Hi @RH205 

If you're using a measure or calculated column and want to display the date in dd-mm-yyyy format, use:

FormattedDate = FORMAT('YourTable'[DateColumn], "dd-mm-yyyy")

 output Result = 12/15/2020 will be date column.

Hope it helps !!


 

Hi  @RH205 
Just a quick reminder that the engineer has already shared the recommended syntax for displaying dates in the dd-mm-yyyy format using the FORMAT()  function in DAX.

Example:

 

FormattedDate = FORMAT('YourTable'[DateColumn], "dd-mm-yyyy")

If the dynamic format option still isn't reflecting this as expected,

 

feel free to share where you're applying it (e.g., card, matrix,) so we can assist further.

Hi @RH205


Just a quick reminder the provided  recommended DAX syntax to format dates as dd-mm-yyyy using the FORMAT () function:

 
FormattedDate = FORMAT('YourTable'[DateColumn], "dd-mm-yyyy")


If it's still not displaying as expected, please let us know where you're applying it (e.g., card, matrix, etc.)

so we can assist you further.

 

Can you share the pbix via some cloud service?

FBergamaschi
Super User
Super User

Here yo ufind the options for sate and time formats

 

https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-custom-format-strings

 

If this helped, please consider giving kudos and mark as a solution

@me in replies or I'll lose your thread

Want to check your DAX skills? Answer my biweekly DAX challenges on the kubisco Linkedin page

Consider voting this Power BI idea

Francesco Bergamaschi

MBA, M.Eng, M.Econ, Professor of BI

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors