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

The Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more

Reply
PowerBI123456
Post Partisan
Post Partisan

Date Formatting

Hi,

 

I have a different date formats that I am bringing over (column 1 below) in text, and need to convert them into the date format as shown in column 2 in power query:

PowerBI123456_0-1686775219417.png

 

Any suggestions? Thanks!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Measure =
VAR _int =
    IFERROR (
        CONVERT ( MAX ( 'Table'[Column1] ), INTEGER ),
        MAX ( 'Table'[Column1] )
    )
RETURN
    IFERROR ( format(CONVERT ( _int, DATETIME ),"dd-mm-yyyy"), format(MAX ( 'Table'[Column1] ),"dd-mm-yyyy") )

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Measure =
VAR _int =
    IFERROR (
        CONVERT ( MAX ( 'Table'[Column1] ), INTEGER ),
        MAX ( 'Table'[Column1] )
    )
RETURN
    IFERROR ( format(CONVERT ( _int, DATETIME ),"dd-mm-yyyy"), format(MAX ( 'Table'[Column1] ),"dd-mm-yyyy") )
Anonymous
Not applicable

this might be a start

Measure = IF (CONTAINSSTRING(selectedvalue('Table'[Column1]),"/") ,   FORMAT(  DATEVALUE(selectedvalue('Table'[Column1])), "mm/dd/yyyy"),
IF(CONTAINSSTRING(selectedvalue('Table'[Column1]),"-") ,    FORMAT(  DATEVALUE(selectedvalue('Table'[Column1])),"mm/dd/yyyy")
))

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.

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.