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
danextian
Super User
Super User

Combing each row of a list of lists into one

This is  not an urgent concern but I am just curious how to do this without actually converting the list to table.

 

 

let
    StartDate= DateTime.Date(DateTime.LocalNow()),
    EndDate= Date.AddYears(StartDate,-2),
    #"List of Lists" = List.Zip({ List.Generate( ()=>EndDate, each _ <= StartDate, each Date.AddDays(_,1)),  List.Generate( ()=>StartDate, each _ >= EndDate, each Date.AddDays(_,-1))}),
    #"Converted to Table" = Table.FromList(#"List of Lists", Splitter.SplitByNothing(), null, null, ExtraValues.Error),
    #"Extracted Values" = Table.TransformColumns(#"Converted to Table", {"Column1", each Text.Combine(List.Transform(_, Text.From), ","), type text}),
    Column1 = #"Extracted Values"[Column1]
in
    Column1

In the script above, I would like to insert a step after #"List of Lists" that will combine the list of lists for each row into just one list. I've tried List.Transform but I couldn't get it right.










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@danextian,

 

You may refer to the code below.

    Column1 = List.Transform(#"List of Lists"
                            , each Text.Combine(List.Transform(_, each Text.From(_)), ","))
Community Support Team _ Sam Zha
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
v-chuncz-msft
Community Support
Community Support

@danextian,

 

You may refer to the code below.

    Column1 = List.Transform(#"List of Lists"
                            , each Text.Combine(List.Transform(_, each Text.From(_)), ","))
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
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.