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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Top Solution Authors