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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
vonp
Frequent Visitor

Extract a Substring from Every Element in a List

I have a dynamic M Query that sends the selected dates to a SQL query.  The format I want the slicer is in:

 

Mon, 01/09/2023 (Proposal 1)

Mon, 01/09/2023 (Proposal 2)

Tue, 01/10/2023 (Proposal 1)

etc.

 

I need to be able to pull out the date and rearrange it to fit the SQL required YYYY-MM-DD format.  Here is what I have tried:

 

	selectedDates = if Type.Is(Value.Type(DateParameter), List.Type) then
            Text.Combine({"'", 
				Text.Combine({
					Text.Combine({
						Text.Combine({Text.Range(DateParameter, 11, 4), Text.Range(DateParameter, 5, 2)}, "-"), 
						Text.Range(DateParameter, 8, 2)}, "-"),
				 	"','"}), "'"})
        else
            Text.Combine({"'", 
				Text.Combine({
					Text.Combine({
						Text.Range(DateParameter, 11, 4), Text.Range(DateParameter, 5, 2)}, "-"),
						Text.Range(DateParameter, 8, 2)}, "-"), "'"}),

 

It works for the defualt parameter, but when I select something on the slicer, I get the following error:

 

vonp_0-1673452146972.png

 

1 ACCEPTED SOLUTION
Daryl-Lynch-Bzy
Community Champion
Community Champion

Okay - I am following now.  This is the transformation needed to each item selected in the Slicer:

 

let
    ParameterText = "Mon, 01/09/2023 (Proposal 1)",
    ExtractDateText = Text.BetweenDelimiters(ParameterText, " ", " "),
    ExtractDate = Date.From( ExtractDateText ),
    DateToText = "'" & Date.ToText( ExtractDate, "YYYY-MM-DD" ) & "'"
in
    DateToText

 

 

Your code can be updated to this:

 

let
ParameterText = { "Mon, 01/09/2023 (Proposal 1)", "Mon, 01/10/2023 (Proposal 1)" },
//ParameterText = "Mon, 01/09/2023 (Proposal 1)",
selectedDates = 
    if Type.Is(Value.Type(ParameterText), List.Type) then
        "in (" &
        Text.Combine(
            List.Distinct(
                List.Transform( 
                    ParameterText,  
                    each "'" & Date.ToText( Date.From( Text.BetweenDelimiters( _ , " ", " ") ), "YYYY-MM-DD" ) & "'"
                    )
            ),
            ", "
        )
        & ")"
    else
        "'" & Date.ToText( Date.From( Text.BetweenDelimiters(ParameterText, " ", " ") ), "YYYY-MM-DD" ) & "'"
in
    selectedDates

 

 

Note the results:

 

With list is:   "in ('2023-09-01', '2023-10-01')"
With Single is: "= '2023-09-01'"

 

 

I am assuming you need to include the text with an Native SQL String.

 

View solution in original post

4 REPLIES 4
Daryl-Lynch-Bzy
Community Champion
Community Champion

Okay - I am following now.  This is the transformation needed to each item selected in the Slicer:

 

let
    ParameterText = "Mon, 01/09/2023 (Proposal 1)",
    ExtractDateText = Text.BetweenDelimiters(ParameterText, " ", " "),
    ExtractDate = Date.From( ExtractDateText ),
    DateToText = "'" & Date.ToText( ExtractDate, "YYYY-MM-DD" ) & "'"
in
    DateToText

 

 

Your code can be updated to this:

 

let
ParameterText = { "Mon, 01/09/2023 (Proposal 1)", "Mon, 01/10/2023 (Proposal 1)" },
//ParameterText = "Mon, 01/09/2023 (Proposal 1)",
selectedDates = 
    if Type.Is(Value.Type(ParameterText), List.Type) then
        "in (" &
        Text.Combine(
            List.Distinct(
                List.Transform( 
                    ParameterText,  
                    each "'" & Date.ToText( Date.From( Text.BetweenDelimiters( _ , " ", " ") ), "YYYY-MM-DD" ) & "'"
                    )
            ),
            ", "
        )
        & ")"
    else
        "'" & Date.ToText( Date.From( Text.BetweenDelimiters(ParameterText, " ", " ") ), "YYYY-MM-DD" ) & "'"
in
    selectedDates

 

 

Note the results:

 

With list is:   "in ('2023-09-01', '2023-10-01')"
With Single is: "= '2023-09-01'"

 

 

I am assuming you need to include the text with an Native SQL String.

 

Thanks, that was super helpful

Daryl-Lynch-Bzy
Community Champion
Community Champion

Hi @vonp - have you considered using the Date.ToText - PowerQuery M | Microsoft Learn function.  The query would like something like this:

selectedDates = Date.ToText( DateParameter , "YYYY-MM-DD" ) 

I did try that, but got the same error.  I was able to just match the SQL column in the database to the Slicer, so this way I didn't need to convert the list

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

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.

Top Solution Authors