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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
ahamedafridi18
Frequent Visitor

How do i extract date from the source name which has string using power query

i have exported csv dat which has got date in their source name. it is a daily download report. i want to create a custom column which extracts the date from the source name so that i can cretae the date column for the dataset.image.png

3 REPLIES 3
Vijay_A_Verma
Most Valuable Professional
Most Valuable Professional

An alternative way in PQ is to use this in a custom column

Text.BetweenDelimiters([Source.Name]," ",".",{0,1})
Anonymous
Not applicable

Hi @ahamedafridi18,

 

Here is a Dax query for a calculated column 'Date' to extract the date from the SourceName column and convert into date format

 

Date = FORMAT(DATEVALUE(RIGHT(LEFT([Source.Name],18),10)),"DD-MM-YYYY")
 
If you like my solution please consider giving a upvote..
 
Thank you!
 
 
m_dekorte
Resident Rockstar
Resident Rockstar

Hi @ahamedafridi18,

 

There are so many different ways to achieve that, just wondering how representative the image is...
For example any of these will do, just insert a Custom Column and copy an expression from below, replace "Source" with the column reference [Source.Name]

let
    Source = "Detroit 21-02-2024.xlsx",
    AlwaysBetween = Text.BetweenDelimiters(Source, " ", "."),
    AtTheEnd = List.Reverse( Text.SplitAny( Source, " .") ){1}?,
    Anywhere = List.First( List.Select( Text.SplitAny( Source, " ."), each Text.Length( Text.Select(_, {"-"}) )=2 ))
in
    Anywhere

 I hope this is helpful

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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