The Magic of Working with Lists in Power Query

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 พ.ย. 2024

ความคิดเห็น • 145

  • @NoiseBlindness
    @NoiseBlindness ปีที่แล้ว +7

    Each of your videos is absolute gold.

  • @GeertDelmulle
    @GeertDelmulle ปีที่แล้ว +11

    Hey Chandeep,
    Here are my suggestions for the challenges you brought up:
    1. Lists can be down-selected just like tables, here's the formula I tried:
    • List.Select(Table.ColumnNames(Source), each _="Name" or Text.StartsWith(_,"Col"))
    • in hind sight: this is exactly the formula Wayne suggested below. 🙂
    2. Here's another way to remove the errors, using some more List functions:
    • AddNull = Table.AddColumn(ConvertNamesToTable, "Null", each null),
    • ZipNull = List.Zip(Table.ToColumns(AddNull)),
    • ReplaceErrors = Table.ReplaceErrorValues(FilterColumns, ZipNull)

  • @wayneedmondson1065
    @wayneedmondson1065 2 ปีที่แล้ว +11

    Thanks Chandeep. Another aweseome lesson and video! For those who like to write a little M, you can get the ColList in one step with: = List.Select(Table.ColumnNames(Source), each _ = "Name" or Text.StartsWith(_, "Col")) and the RenameCols in one step with: = Table.ToColumns(Table.Transpose(Table.AddColumn(Table.FromList(ColList), "Column2", each null))). Always fun to learn and grow skills at your channel. Thumbs up!

    • @julie_chen
      @julie_chen 2 ปีที่แล้ว +1

      👍

    • @jimfitch
      @jimfitch 2 ปีที่แล้ว +1

      Thanks, Chandeep & Wayne!

    • @Terraque
      @Terraque 8 หลายเดือนก่อน

      Thanks for the tutorials and comments!

  • @martyc5674
    @martyc5674 2 ปีที่แล้ว +17

    This is such a brilliant video- I’ve worked a bit with M a bit and there are some key points in here that are really well explained. (The UI being greyed out for lists, tabletocolumns etc!!) This video is going to the top of my favorites!!

  • @gabrieldiazireland7157
    @gabrieldiazireland7157 ปีที่แล้ว +4

    Great way of making the model resilient to changes.

  • @MichaelBrown-lw9kz
    @MichaelBrown-lw9kz ปีที่แล้ว +1

    Excellent explanation on how to apply Lists in Power Query formulas.

  • @DineshKumar-xl2ug
    @DineshKumar-xl2ug ปีที่แล้ว

    You are one of the cleanest presenters in the business. Really love the way your put things together.. following all your DAX vedios. they are awesome..

  • @garciarogerio6327
    @garciarogerio6327 5 หลายเดือนก่อน

    Taking Power Query to the next level. Edit (a day later): A dashboard I published on the PowerBi service failed to update. I verified that one of these random columns (Column14) is missing in 3 tables (it has probably been filled in as there are changes in the Excel tables. I prefer to get data from tables to prevent this, but the information owner doesn't want to have tables. With this video, the problem is dynamically solved. Thank you again for the tips here and on LinkedIn

  • @power_given
    @power_given 9 หลายเดือนก่อน +1

    You have stack a simple video with a amazing tricks... Thank you

  • @christophertauss3640
    @christophertauss3640 ปีที่แล้ว +1

    Exceptionally good explanation. I work with Power Query a lot and marvel at what it can do. M is really a list and table processing language. This video is very crucial to understand M which is, IMO, an elegant but complex language. I have subscribed and plan to listen to your other videos - esp. in Power BI and DAX which I am much less experienced with. Great job!

  • @OsamaHassanin
    @OsamaHassanin 2 ปีที่แล้ว +2

    As usual, Awsome.
    For list of lists we can also do it by List.Zip.

  • @vishaljhaveri7565
    @vishaljhaveri7565 ปีที่แล้ว

    One of the best beginners friendly video on list.

  • @LogicQuest
    @LogicQuest 2 ปีที่แล้ว +2

    Plz keep posting regularly.
    Want more

  • @ricardobunge5957
    @ricardobunge5957 2 ปีที่แล้ว

    Bravo! Another fantastic video! Thanks Chandeep - your contributions to the community are very, very much appreciated!

  • @KelvinAdityo
    @KelvinAdityo ปีที่แล้ว

    I think I'm getting smarter (at my own pace) by watching your videos. Thanks.

  • @gennarocimmino
    @gennarocimmino 2 ปีที่แล้ว

    Great Chandeep
    A big thank you for sharing this knowledge with great passion and simple, engaging language.

  • @iantotheh
    @iantotheh ปีที่แล้ว

    You indirectly answered a question I had been wondering about: once you create a list how do you get back to the original table? Simply click on Source again! Thank you.

  • @brianroberts1363
    @brianroberts1363 6 หลายเดือนก่อน

    Chandeep - This was a brilliant video - you have an amazing way of explaining things and I've learnt a lot from you. Thankyou

  • @zahoorsarbandi2982
    @zahoorsarbandi2982 2 ปีที่แล้ว

    Zabar10.. One of the most important videos on the objects of power query. Kindly make some more videos like this on the basic objects and fundamentals of power query.

  • @gfcsolomon
    @gfcsolomon 3 หลายเดือนก่อน

    You are just awesome! Your videos are fantastic! I just want to say a big THANK YOU.

  • @AlexRuu
    @AlexRuu 2 ปีที่แล้ว

    So good explained, I feel like magician 🎩 with Power Query and this M language

  • @mecorowa5642
    @mecorowa5642 11 หลายเดือนก่อน

    Hi Chandeep, your YT are the best to get in to Power Query. I played a bit around with list and found out it is not necessary to transform the list into table. There are enough list operations to solve it as list. Here my m code:
    List.Select(Table.ColumnNames (Table.Combine ( Custom4_PromoteHeaders [Custom])), each not Text.Contains (_,"Col"))
    In my case a was chasing all columns without "Col"

  • @parshuramnangare8577
    @parshuramnangare8577 ปีที่แล้ว

    Thank you so much Sir for providing such a valuable knowledge.

  • @iankr
    @iankr ปีที่แล้ว

    Many thanks, Chandeep. I learn a lot from your videos.

  • @jimfitch
    @jimfitch 2 ปีที่แล้ว

    Excellent technique & tutorial, Chandeep - thank you!

  • @vacilando86
    @vacilando86 2 ปีที่แล้ว +2

    Do you have a video covering "each", '_", (), {},[ ], etc.
    By the way, thank you so much for such a great training

  • @inascaro
    @inascaro ปีที่แล้ว

    Execellent explanation! Clear even for a novice like me 🙂 Thank you

  • @yookusui9764
    @yookusui9764 2 ปีที่แล้ว +5

    Genius seriously.

  • @elbadlis
    @elbadlis 2 ปีที่แล้ว

    Chandeep, you are awesome. Amazing. Thank you for the lesson.

  • @ahmadrais3585
    @ahmadrais3585 2 ปีที่แล้ว +1

    Love your practical advice and relevant topics you share about!

  • @KuldeepSingh-nq1vi
    @KuldeepSingh-nq1vi 2 ปีที่แล้ว +1

    Awesome video again, please make other basic videos like this..Such as how to use underscore and each keyword in power query..

  • @hugomelgar5046
    @hugomelgar5046 ปีที่แล้ว

    Chandeep, thank you for sharing your knowledge. Pretty nice video¡

  • @debbie6085
    @debbie6085 2 ปีที่แล้ว

    Thank you. That was great. I'm really starting to understand the power of Lists.

  • @SalihKocaSK
    @SalihKocaSK 2 ปีที่แล้ว

    Great job Chandeep. Thanks for your efforts.

  • @FRANKWHITE1996
    @FRANKWHITE1996 2 ปีที่แล้ว

    Basically essential PQ video. Thanks for sharing.

  • @pierre-louisviala3191
    @pierre-louisviala3191 2 ปีที่แล้ว

    Thanks Chandeep ! Smart as usual !🙂

  • @ramanaidug
    @ramanaidug ปีที่แล้ว

    Thank you so much for the explanation, Can you please let me how to give list for slipting data by position dynamically, Can you please let me is it possible or not

  • @Mixolydian74
    @Mixolydian74 ปีที่แล้ว

    Just started learning power query and you've been a big help so far!
    I did have a question regarding the dynamic reordering of columns that I'm hoping you could help with. For instance, what If most of the column header names are years, and I want to reorder the columns so that Latest year and it's corresponding data is on the furthest right column. I believe I need to change the format of the column names from "text" to "date", in order to dynamically reorder them in this fashion but I'm not sure how to achieve this. I want the 1st column in the set of data to stay where it regardless (it's just a string of words, not a year) of any changes to the source data overtime. For some context, the source data that I'm using is getting pulled from the web (to analyze company financial statements) which is why I want to dynamically update the formatting and column order each time the data refreshes. The column names are years, but the formatting on the data under the years varies by each row (i.e., row 3, 10, 17 is in Percentage and rows 6, 11, and 15 are in Number format). However, when the query loads the data into excel, the formatting for everything defaults to "General" and then I have to manually adjust the formatting to perform any excel calculations and further analysis on the data set pulled in. I look forward to hearing from!
    Thanks,
    Mike

  • @thomaseckersley5026
    @thomaseckersley5026 ปีที่แล้ว

    I'm trying to apply a List of a list for dynamic Col. Names when my table of data has the first row as the year "2023", the second row as the month "August", and the third row as the Day "1" etc. Am I on the right track? Thanks

  • @maryjavasilyevna861
    @maryjavasilyevna861 ปีที่แล้ว

    Thank you 🙏🏻 great video

  • @databird5755
    @databird5755 2 ปีที่แล้ว

    This was amazing. And you explained it very well. Thank you!

  • @heriniainatza3066
    @heriniainatza3066 3 หลายเดือนก่อน

    great tuto. thank you very much.

  • @usedax
    @usedax ปีที่แล้ว

    very good, I had already done something like this in a very similar way.

  • @Sumanth1601
    @Sumanth1601 2 ปีที่แล้ว +2

    Excellent content ☺️👍 very helpful:)

  • @karimallahwala7022
    @karimallahwala7022 2 ปีที่แล้ว

    Excellent und very useful content.Thank you so much for sharing your Knowledge

  • @aman_mashetty5185
    @aman_mashetty5185 2 ปีที่แล้ว

    i'm glad that i followed your channel.. as always awesome video, Once again thanks for the video

  • @zakincc
    @zakincc 7 หลายเดือนก่อน

    You are excellent sir

  • @komanguy
    @komanguy 2 ปีที่แล้ว

    Thanks a lot for those powerful tips.

  • @Ssrnfamilyvlogs
    @Ssrnfamilyvlogs 2 ปีที่แล้ว

    How do you filter the data in power bi using parameters.

  • @nunolourenco1532
    @nunolourenco1532 2 ปีที่แล้ว

    Great as usual but, what if you need FUNCTIONS inside the list items (like in a GROUP BY operation) ?

  • @pmsocho
    @pmsocho 8 หลายเดือนก่อน

    Great video! Thanks!

    • @TomaszBI
      @TomaszBI 8 หลายเดือนก่อน

      Greetings Mr Majcher! Love your content!

    • @pmsocho
      @pmsocho 8 หลายเดือนก่อน

      @@TomaszBI 👍👍

  • @modernboutique1389
    @modernboutique1389 ปีที่แล้ว

    Amazing session,

  • @ryoshihiro
    @ryoshihiro 10 หลายเดือนก่อน

    Very useful thanks a lot

  • @IamMiteshParmar
    @IamMiteshParmar 2 ปีที่แล้ว

    Thanks for posting useful contents 👍

  • @julie_chen
    @julie_chen 2 ปีที่แล้ว

    This is exactly what i was searching.🎉👍🙏👏

  • @CMN1098
    @CMN1098 ปีที่แล้ว

    How do I apply this when I’m combining multiple worksheets

  • @lionels839
    @lionels839 ปีที่แล้ว

    Would be great to see the same for formatting numbers and rounding Numbers

  • @skimpylemon8034
    @skimpylemon8034 2 ปีที่แล้ว

    Fantastic video! Thank Chandeep :)

  • @suryatripathi3246
    @suryatripathi3246 ปีที่แล้ว

    I have applied filter function to certain columns to extract some data which I need to append to other data and sort. But when I import both these columns into power query it shows error and null in cells with filter function and spilled values. How to get around this?

  • @paulouwerkerk-n1d
    @paulouwerkerk-n1d 10 หลายเดือนก่อน

    Hi Chandeep,
    Thanks for all the video's. As a beginner, it is still a bit confusing for me.
    I try to make a report for a webshop so the third column is used.
    I have a Table in Excel with two columns, and tried to make a third column that combines the previous text values until a new Type starts. I hoped it was a standard example in any video.
    Type Text Value New Text Value
    A 10 10
    A 20 10|20
    A 10|20
    A 40 10|20|40
    B 30 30
    B 40 30|40
    B 30|40
    B 50 30|40|50
    C
    C 20 20
    C 30 20|30
    Do you think it is a standard problem or do I not recognise the solution in video's?

  • @ryanyou1583
    @ryanyou1583 2 ปีที่แล้ว

    Hi Goodly, I wonder if you could suggest which book shall I read if want to dive in more to learn M. Thanks😚

    • @GoodlyChandeep
      @GoodlyChandeep  2 ปีที่แล้ว +1

      Official documentation by Microsoft and M primer series from Ben Gribaudo

    • @ryanyou1583
      @ryanyou1583 2 ปีที่แล้ว

      @@GoodlyChandeep Thank you Sir

  • @kunzhang7506
    @kunzhang7506 2 ปีที่แล้ว

    In my Power query (Excel 2019), i do not have the preview of formulas when I creat customer columns. Can you please advise how to resolve? Thks

  • @newplayer9503
    @newplayer9503 ปีที่แล้ว

    Hi Chandeep
    fantasic presentations of solving Dataproblems with using Power Query. I have a lot of learn to use the different functions. Your videos are great. I hoped to solve my problem but I failed.
    My case is , I get Orders as PDF , the tables inside are not usable, therefore I catch the Pages.
    But every page had different amount of columns and no possibility headers .I try it with max columnscount to select all columns or DemoteHeaders, then I would combine all columns in a new with delimiter “ “. Result is one Colum and all lines of the pdf
    If I changed the Pdf , sometimes I have no blanks between the words or not all columns were extract
    Question : is there a possibility to import more pdf-pages line by line without to much steps in M-Code or how ever ?
    Do you have a Tipp?

  • @raimundojs9547
    @raimundojs9547 ปีที่แล้ว

    Excellent! Wouldn't be useful the following function (to avoid the Table.Transpose)?
    Table.ToRows(table as table) as list

  • @CAKimberlyLewis
    @CAKimberlyLewis 11 หลายเดือนก่อน

    "SomeData" I can't stop laughing! This video is brilliant for SO many reasons. Bravo!

  • @txreal2
    @txreal2 ปีที่แล้ว +1

    I usually copy, transpose & select what columns I need in Excel; since my tables have 35 columns to mess with scrolling around.
    Is it better OR NOT to import that list into PQ & work with it?
    Great video! Thanks.

  • @youugoo22
    @youugoo22 ปีที่แล้ว

    but thank you.....gives insight in navigating the weeds of power query

  • @keagankemp6275
    @keagankemp6275 2 ปีที่แล้ว

    Aah what can I say, if you good you’re good. Thanks for this much needed!

  • @hariprasad289
    @hariprasad289 ปีที่แล้ว

    Superb Sir

  • @sandipansarkar9211
    @sandipansarkar9211 11 หลายเดือนก่อน

    finished watching

  • @vadnerepravin
    @vadnerepravin 2 ปีที่แล้ว

    Thank you sir.
    I have one query regarding this
    I have many coulmn Net 5%, Net 12% .... and CGST 5% CGST 12% ...
    I have another table which we define Net 5% is Net , Net 12% is Net, CGST 5% is CGST so on and so forth
    Can we combine all Sales Data into user defined named as I mentioned above?
    Please help me, thank you very much

  • @tomstrack42
    @tomstrack42 2 ปีที่แล้ว

    Brilliant, thanks!!!

  • @udayteja6595
    @udayteja6595 8 หลายเดือนก่อน

    Informative...

  • @kennethstephani692
    @kennethstephani692 2 ปีที่แล้ว

    Great video!!!

  • @stephenstacey5369
    @stephenstacey5369 ปีที่แล้ว +1

    Thanks!

  • @bharathramc.n7796
    @bharathramc.n7796 2 ปีที่แล้ว

    Hi Great video
    Can you please do a similar video where the column names are not bit similar (i e Col1,Col2, Col3,....) as you had shown
    The user is given the choice to select the required col name/s ( No. of Column are 25).

  • @峰王
    @峰王 ปีที่แล้ว

    AMAZING SIR

  • @ManishKumar-eu1qw
    @ManishKumar-eu1qw 2 ปีที่แล้ว

    How to filter Analytics data in Power bi with parameters?

  • @AhmedAriem
    @AhmedAriem 2 ปีที่แล้ว +2

    it's possible:
    Table.ReplaceErrorValues(table, List.Transform(Table.ColumnNames(table),(x)=>{x,null}))

  • @SP_Investments
    @SP_Investments 2 ปีที่แล้ว

    How to use network day Excel formula in power query, anyone knows

  • @sakibzamanmohammad8895
    @sakibzamanmohammad8895 2 ปีที่แล้ว

    Hi, could you please help me with last six months sales dax formula by month's slicer selection for excel not for powerbi.

    • @ajisharavind6937
      @ajisharavind6937 2 ปีที่แล้ว

      Use pivot table and use month/ year in slicer

    • @sakibzamanmohammad8895
      @sakibzamanmohammad8895 2 ปีที่แล้ว

      @@ajisharavind6937 basically I need rolling distribution (distinct count) for last 6 months or 3 months by slicer selection.

  • @vishnupp5944
    @vishnupp5944 7 หลายเดือนก่อน

    Arey,,, fantastic

  • @smartwork4768
    @smartwork4768 2 ปีที่แล้ว

    thanks dear

  • @gxordi
    @gxordi 2 ปีที่แล้ว

    Thanks.

  • @bannubro1729
    @bannubro1729 ปีที่แล้ว

    Helpful

  • @sivablazinghawk
    @sivablazinghawk 2 ปีที่แล้ว

    Hi Chandeep, Can you please Share the working file of this video if possible.

    • @GoodlyChandeep
      @GoodlyChandeep  2 ปีที่แล้ว

      goodly.co.in/magic-working-lists-power-query/

  • @kebincui
    @kebincui 2 ปีที่แล้ว

    Super👍

  • @inkuban
    @inkuban ปีที่แล้ว

    Awesome tips for working with lists. The problem with these solutions is that you are entirely dependent on your knowledge base of return types of methods and properties to plugin the parameters within the functions to meet and get the desired results and it will take a while for anyone to bank all that knowledge to be able to apply them and make use of them. Awful design.

  • @EtchTzy
    @EtchTzy 6 หลายเดือนก่อน

    11:10

  • @AshokSankarVarmaChekuri
    @AshokSankarVarmaChekuri 2 ปีที่แล้ว

    ❤️

  • @KrzysztofPoradziński
    @KrzysztofPoradziński 7 หลายเดือนก่อน

    nice witchcraft Sir

  • @somkanskar8931
    @somkanskar8931 7 หลายเดือนก่อน

    Bhaiya me bhaiya chandeep bhaiya

  • @antoines.7682
    @antoines.7682 ปีที่แล้ว

    This about only Dax and Mcodes😢

  • @Casa-gl8gh
    @Casa-gl8gh 2 ปีที่แล้ว

    i love u

  • @carlocalingasan998
    @carlocalingasan998 ปีที่แล้ว

    I'm all about the lists, 'bout the lists, not table.

  • @cesarsaldana3429
    @cesarsaldana3429 7 หลายเดือนก่อน

    This time you went too far in the second example, with the Table.FromRows function, it is simpler

  • @youugoo22
    @youugoo22 ปีที่แล้ว

    too much work....got to be an easier way

    • @briandennehy6380
      @briandennehy6380 9 หลายเดือนก่อน

      Lol. Nothing worth doing is easy

  • @TomaszBI
    @TomaszBI 8 หลายเดือนก่อน

    Nice, but I was excepting little more "magic" .

  • @youugoo22
    @youugoo22 ปีที่แล้ว

    almost 15 minutes to show a conversion tech....🤔