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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
idage
Helper I
Helper I

DATE FROM TEXT STRING

Goodmorning community,

i need to solve a problem. I have a column containing for ex:

 

03-Jul-23 A

08-Nov-23*

03/11/2023

03/11/2023 A

03-Jul-23

and i need to extract date all in the same format.

Could you help me?

 

Thank you very much in advance.

 

1 ACCEPTED SOLUTION
Royel
Helper II
Helper II

Hi @idage , to do that load data and go to power query

Step 1: Extracted Text Before Delimiter

= Table.TransformColumns(#"Filtered Rows", {{"Date", each Text.BeforeDelimiter(_, " "), type text}})

Select Column -> Transform -> Extract -> Text Before Delimiter

Royel_1-1692956691256.png

 

Step 2: Replace Value (Replace * with space)

= Table.ReplaceValue(#"Extracted Text Before Delimiter","*","",Replacer.ReplaceText,{"Date"})

Select Column -> Transform -> Replace Values

Royel_2-1692956855582.png

 

Step 3: Change Data Type (Output) 

Royel_3-1692957059506.png

 

 

Regards
Royel

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Royel
Helper II
Helper II

Hi @idage , to do that load data and go to power query

Step 1: Extracted Text Before Delimiter

= Table.TransformColumns(#"Filtered Rows", {{"Date", each Text.BeforeDelimiter(_, " "), type text}})

Select Column -> Transform -> Extract -> Text Before Delimiter

Royel_1-1692956691256.png

 

Step 2: Replace Value (Replace * with space)

= Table.ReplaceValue(#"Extracted Text Before Delimiter","*","",Replacer.ReplaceText,{"Date"})

Select Column -> Transform -> Replace Values

Royel_2-1692956855582.png

 

Step 3: Change Data Type (Output) 

Royel_3-1692957059506.png

 

 

Regards
Royel

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.