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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

date data type

There is a text type Data (date) in Date data type how to convert it to date data type

 

sravan_kumar1_1-1668841482970.png

 

1 ACCEPTED SOLUTION
AntrikshSharma
Community Champion
Community Champion

@Anonymous Ideally, I would ensure the source is correct but you can try to add a new column in PQ or you can transform the column in place, create a new query and paste this code in the advanced editor and observe the last 2 steps

let
    Source = 
        Table.FromRows (
            Json.Document (
                Binary.Decompress (
                    Binary.FromText ( "i45WMjTSNzbUNzIwMlKK1YlWArKBIhBuLAA=", BinaryEncoding.Base64 ),
                    Compression.Deflate
                )
            ),
            let
                _t = ( ( type nullable text ) meta [ Serialized.Text = true ] )
            in
                type table [ Date = _t ]
        ),
    ChangedType = Table.TransformColumnTypes ( Source, { { "Date", type text } } ),
    AddColumn = 
        Table.AddColumn (
            ChangedType,
            "Dates Fixed",
            each 
                try Date.FromText ( [Date], "en-IN" ) 
                otherwise Date.FromText ( [Date], "en-US" ),
            type date
        ),
    TransformColumn = 
        Table.TransformColumns (
            ChangedType,
            {
                "Date",
                each 
                    try Date.FromText ( _, "en-IN" ) 
                    otherwise Date.FromText ( _, "en-US" ),
                type date
            },
            null,
            MissingField.Ignore
        )
in
    TransformColumn

 

View solution in original post

2 REPLIES 2
ronrsnfld
Super User
Super User

The item that is not being "converted" does NOT represent a valid date. There is an error in the data source that should be changed. If you do not have access to the data source, you will need to first convert that text string to a valid date (or a null).

AntrikshSharma
Community Champion
Community Champion

@Anonymous Ideally, I would ensure the source is correct but you can try to add a new column in PQ or you can transform the column in place, create a new query and paste this code in the advanced editor and observe the last 2 steps

let
    Source = 
        Table.FromRows (
            Json.Document (
                Binary.Decompress (
                    Binary.FromText ( "i45WMjTSNzbUNzIwMlKK1YlWArKBIhBuLAA=", BinaryEncoding.Base64 ),
                    Compression.Deflate
                )
            ),
            let
                _t = ( ( type nullable text ) meta [ Serialized.Text = true ] )
            in
                type table [ Date = _t ]
        ),
    ChangedType = Table.TransformColumnTypes ( Source, { { "Date", type text } } ),
    AddColumn = 
        Table.AddColumn (
            ChangedType,
            "Dates Fixed",
            each 
                try Date.FromText ( [Date], "en-IN" ) 
                otherwise Date.FromText ( [Date], "en-US" ),
            type date
        ),
    TransformColumn = 
        Table.TransformColumns (
            ChangedType,
            {
                "Date",
                each 
                    try Date.FromText ( _, "en-IN" ) 
                    otherwise Date.FromText ( _, "en-US" ),
                type date
            },
            null,
            MissingField.Ignore
        )
in
    TransformColumn

 

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

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.