Learn Power Query & Automate Boring Data Tasks in 15 Minutes!

Поделиться
HTML-код
  • Опубликовано: 21 сен 2024

Комментарии • 304

  • @vijayarjunwadkar
    @vijayarjunwadkar Год назад +63

    Agree with you Chandoo. As data is growing and becoming complex, it will carry some legacy issues and new ones too, so ability to curate and clean it, is going to matter. Thank you for a simple yet powerful tutorial!

    • @chandoo_
      @chandoo_  Год назад +1

      You are welcome Vijay.

  • @MelanieOnDemand
    @MelanieOnDemand Год назад +77

    Before removing duplicates, it is best to handle the letter cases first. Power Query treats lower case and upper case of the same letter as different characters. I would transform all email addresses to lower case before removing duplicates 😉.
    Great video, Chandoo!!

    • @chandoo_
      @chandoo_  Год назад +27

      Amazing tips @Melanieondemand
      Donut for you. 🍩

    • @florisvanderleest7798
      @florisvanderleest7798 Год назад +5

      With removing duplicates, one could also remove partial payments, in case the administrators entering new students don’t pay attention to duplicates or made typos

    • @Nic-xr1og
      @Nic-xr1og Год назад

      Great tip - thank you!!

    • @ggggl8
      @ggggl8 19 дней назад

      Just one Question:
      What if a student has paid 100 and next time 200, but both these entries are recorded separately so while removing duplicates his 1 entry will be deleted. So how can we counter that?

  • @dcoltonbrown
    @dcoltonbrown Год назад +25

    Chandoo - Your Excel tutorials are well above par and I have learned so much watching your videos. I've been able to impress myself and my colleagues with your tips and tricks. I'm not a data analyst - but data defines my actions and you have introduced me to so many functions and tips that make a HUGE difference in time and pinpointing issues. Very awesome and very well done in every respect. Thank you, you are appreciated.

    • @dcoltonbrown
      @dcoltonbrown Год назад +2

      Oh, my girlfriend - she said she loves you hair!

  • @martinpaulbannister1745
    @martinpaulbannister1745 Год назад +34

    Hi. Totally agreed. Power Query is amazing. Level of knowledge required to start is minimum, building skills has you go. Power Pivot data model and DAX is also amazing. And ensures extremely complex task can be developed and repeated without fuss. Martin

    • @Kirill628
      @Kirill628 Год назад

      Vba is better)

    • @chandramohan1418
      @chandramohan1418 Год назад

      Where to find jobs?.

    • @martinpaulbannister1745
      @martinpaulbannister1745 Год назад

      I use VBA but only basic coding. Applying protect / unprotect workbook containing hundreds of worksheets. Not looked at VBA to ETL data.

    • @infamous8541
      @infamous8541 Год назад +2

      @@Kirill628 yea vba is better, but it'd have took me 20 minutes of writing a code & debugging it to come to the same result that he did without writing a single line of code.

  • @TimeManInJail
    @TimeManInJail Год назад +15

    You can also create a folder that will automatically format itself if you have other raw data, say a different school but need the same analysis so you can drop the file into the power query folder and it will format everything so you don't have to repeat the steps

  • @GoldenSlumber474
    @GoldenSlumber474 Год назад +12

    Awesome lesson Chandoo! Even in retirement, I continue to extensively use Excel & your Power Query videos have opened a whole new realm of possibilities for my Excel needs. Thank you!

    • @chandoo_
      @chandoo_  Год назад +1

      Thanks GS for your passion to learn and love for Data. :)

    • @Awachit1
      @Awachit1 Год назад

      Hi, is there any opportunities for Business Intelligence/ Data Analysis in Canada?

    • @Aryanthakur-yt9bc
      @Aryanthakur-yt9bc Год назад +2

      @@Awachit1 India mein he karle bro jitna waha par in hand milta hai ussey zyada he India mein milta hai. Agar bahar jaana hai toh Germany kya

  • @shaikusman536
    @shaikusman536 Год назад +3

    If Data is small Power query, Else: SQL is your friend for large DATA sets......thanks Chandoo...Nxt video Pls compare MsExcel=>Power Query==> SQL....Pros & Cons, Industry Requirement.....

  • @jasonmurray8777
    @jasonmurray8777 Год назад +11

    I use a lot of Power Query because I make a lot of Power BI dashboards. I spend a lot of time building star schemas - sometimes normalizing, sometimes not - it all depends on what I am trying to do with the data. The point is that I consider it to much more important to model the data for utility than the time I spend on any DAX I might write later. Honestly, its like 80% data modeling and 20% adding visualizations and some measures of calculated tables with DAX later. That said, I recently started going back to pre-formatting more significant transformations in SQL Server rather than trying to clean it up in Power Query. Loading some data into a data mart first to transform it with SQL, and then creating a view I can pull from into Power BI, is often a game changer for not having to do so many transforms in Power BI with Power Query. Put SQL and Power Query altogether and you can provide some very fast loading and amazing data visualization and reports with the Power BI report app too (you know - SSRS 2.0 for the cloud).

    • @abbylynn8872
      @abbylynn8872 Год назад +1

      Thank you for this. This completely resonated with me. 💕

    • @saurabhdwivedi5866
      @saurabhdwivedi5866 Год назад

      Hi @Jason Murray can you please elaborate it a bit so that a new data student like me will have good insight about the process you have mentioned.

    • @jasonmurray8777
      @jasonmurray8777 Год назад +4

      @@saurabhdwivedi5866 Creating a good data model, most typically a star schema with a central fact table (or tables) surrounded by dimension tables (the things you will use as filters or slicers) is far more important than what you will do with DAX later. You need to understand the implications of any data model you create because if you don't you will often find yourself going back to the data model and possibly starting from scratch because you have painted yourself into a corner and no amount of DAX will get you out of it. That said, the model you choose will be affected by what existing relationships and cardinality exist within your data as well as your requirements for grain (granularity/precision) and, when very large data sets are involved, balancing those grain requirements against speed requirements. That said, my advice in this respect is, unless you have data that has already been modeled and has a data dictionary (or you are only working a single table or two), then you need to spend some time profiling your data when you start and make an entity relationship diagram (ERD). That ERD will most likely highlight for you what you can and can't do with your data and often leads you to realize what other data you need, but might not have, in order to meet requirements in the ultimate dashboard. With respect to my comment about using SQL first. You will likely often use data from a SQL database using an ODBC connection to pull it into Power BI. A database is typically a lot faster than Power BI and having pre-modeled data coming over from the SQL side will save you a lot of modeling on the Power BI side. Typically what you would do is create a view (or views) on the database side that have your data already as close to perfect as possible so you don't have to spend time cleaning it up in Power BI. Next, you would have a parameterized stored procedure to call against that view, even if the parameter was as broad as * (select everything). Accounts calling against the view would be in a role in the database that has minimum permissions to call those stored procedures against a schema that contains views for BI purposes (things like power BI) and that role would not have permissions to do anything else. This will help protect the data in your DB by not exposing the base table names, prevent SQL injection vulnerabilities, and make your data updates into Power BI that much faster. If you are savvy , you could also design a stored procedure in a way that only returns incremental updates for faster data loads without having to do the complex setup for incremental data on the Power Bi side. Anyhow, that is probably a lot more detail and probably leads you to many more questions. I suggest reading up on star models, ERDs, normalization, cardinality, and grain as well as the use of views with carefully permissioned stored procedures (in their own schema so you can manage the security at that level rather than by individual views) to provide efficient and secure return of data from a DB into Power BI rather than just doing everything inefficiently on the power bi side or making up for data model deficiencies with DAX wizardry later.

    • @saurabhdwivedi5866
      @saurabhdwivedi5866 Год назад +1

      @@jasonmurray8777 Thankyou soo much. For sure I will go through the above mentioned point.

    • @Anvesh2013
      @Anvesh2013 Год назад +1

      @@jasonmurray8777 thank you, I always wondered that why would we need to do those major cleanup work before going into the visuals, when we usually are prepared for the visuals only after the guarantee that the available data is rock solid in the database/(whichever source)..

  • @rahulranjan8511
    @rahulranjan8511 Год назад +1

    If anyone wants to learn with authenticity Microsoft Excel, Chandoo will be game changer for you..highly recommend for learning MS excel concepts from scratch.

  • @NdifelaniMurida
    @NdifelaniMurida 11 дней назад

    Thank you so much for your generosity, knowledge, and experience. I enjoy your teaching style which is slow-paced and thorough. It is excellent for beginners like me. Much appreciated.

  • @malwalsabino519
    @malwalsabino519 Год назад +4

    Thanks Chandoo!
    I share with you the passion for Excel and particularly power query. My data cleaning skills started with copy and pass ( like your shorts " Isaw my boss doing this"), then, I discovered Excel formulas and functions and worked with the basics ilke right, left and mid for text then nested formulas/functions combining them with len, substitute etc for more efficient data cleaning and transformation but was sort of manual too. The game change emerged when I discovered power query, and since that time, things changed significantly. Now, I fear no more data consolidation, cleaning, and transformation with full automation. Because of the power query, I still stick to Excel as my first data analytics option.
    Thanks for the great content... I hope you would consider more content on another Excel power.. The power pivot
    Stay blessed

  • @bj_
    @bj_ Год назад +3

    Such a versatile tool, I discovered power query by accident years ago and have found new uses for it nearly every month since.

  • @AndreassaerdnA
    @AndreassaerdnA 22 дня назад

    Best kind of explanations I ever seen in RUclips. Good job 👍🏻

  • @markslima1557
    @markslima1557 Год назад +3

    I've never used Power Query in my life, and you made this process clear and rather fun. Thank you and I'm happy to subscribe to your channel!

    • @chandoo_
      @chandoo_  Год назад +1

      Welcome aboard Mark. I am glad you enjoyed this.

  • @futurehopeobioma670
    @futurehopeobioma670 Год назад +1

    Chandoo you are simply too much. I'm short of words. Thanks a lot.

    • @chandoo_
      @chandoo_  Год назад

      You are most welcome

  • @petrosagbaleme9726
    @petrosagbaleme9726 21 день назад +1

    Hum, Chandoo is in another dimension more than the humain! I want to learn from you Sir and get my first job as a junior data analyst si possible.

  • @Soulenergy31
    @Soulenergy31 Год назад +1

    0:11 focus on PowerQuery, thank you Sen Sei!
    0:36 PQ is a data pre-processing engine

  • @sumakudala688
    @sumakudala688 Год назад +2

    Every time you come with Valuable content. Thank you sir

  • @niteeshmishra2790
    @niteeshmishra2790 Год назад

    Love You chandu Sir From Uttarpradesh Amethi, Jay hind Wande matram 🇮🇳🙏

  • @shafimirza8551
    @shafimirza8551 Год назад +2

    All your videos are worth watching.. we end up learning something new always...thank u so much for sharing your knowledge..😊

  • @justbeingfrank6342
    @justbeingfrank6342 Год назад +2

    Chandoo - These videos are fantastic. I follow a few YT channels whose niche charges are Microsoft “services” they are great.
    However, you are killing it with the micro-niche of Microsoft Excel. Keep up the incredible work. Your channel has been instrumental.
    Thank you.

    • @chandoo_
      @chandoo_  Год назад +1

      So glad to hear that JBF. Thanks for your love and support.

  • @ilyakabanov1820
    @ilyakabanov1820 Год назад +1

    Totally agree. It's an essential ETL tool. DAX is aggregation, but those who deal with the real world know how many errors, omissions, and data overlaps one needs to resolve before doing any meaningful analysis

    • @chandoo_
      @chandoo_  Год назад +1

      Better data → Easier DAX. That is why PQ is the key to successful data analysis.

  • @mohdayazuddinshaikh4454
    @mohdayazuddinshaikh4454 Год назад +1

    Hi Chandoo, please continue such series of Power Query. Your way of teaching is amazing 🤗

  • @normanknutsen8253
    @normanknutsen8253 Год назад

    It is a fantastic tool have been using it for almost two years now and it has made things possible that I would have had to use Access for instead. The file combining feature is, I think the easiest way to combine similar files from a single file folder. Way back when I did the same thing for Access I had to use a good bit of VBA code to do the same thing that Power Query did in less than 10 clicks of the mouse.
    Love your videos Sir, keep up the good work

  • @pampapathipampareddy9835
    @pampapathipampareddy9835 Год назад

    I have been learning since 2013 with yours help ,thanks

  • @shanmugapriyayu2141
    @shanmugapriyayu2141 Год назад +3

    Hi Chandoo. Can you please show a video of how to use power query for Mark Analysis and Teacher Analysis report and charts. Your videos are greatly inspiring and I've been learning so much from them. As a teacher trainer, I'm quite fascinated by the way you explain things and I m excited to know how I can use Power Query and Power BI to generate performance of students

    • @chandoo_
      @chandoo_  Год назад +1

      Good points Shanmugapriya. I will add a video on this topic in upcoming months.

  • @johnford3825
    @johnford3825 7 месяцев назад +1

    Excellent presentation. I hope to use this to transfer and analyse some data held in multiple pdf’s

  • @ktp.
    @ktp. Год назад

    My absolute favourite learning channel. I will have to check out your training courses on your site - your YT vids inspire me to work with data!! Sincerely much appreciated!!!

  • @suvamtechnical
    @suvamtechnical 6 месяцев назад

    you are such a good trainer. your ways of making understand others are very nice. very knowledgeable video.

  • @kaitlinbero1894
    @kaitlinbero1894 Год назад

    Thanks to you, I am learning so much about Excel. With my new job they do not provide the best training, so to have this and all these wonderful videos has helped me a great deal. Thank you, Chandoo!

  • @Bethwel1
    @Bethwel1 Год назад +1

    You have made the complex simple to follow and understand. Thank you very much.

  • @shankirianilgoud1930
    @shankirianilgoud1930 Год назад

    I am looking for a job I have experience in ms excel for 4 years kindly advise us every day, watching your videos

  • @rameshh9560
    @rameshh9560 8 месяцев назад

    Nice presentation with no nonsense

  • @ahmedabdulahimahamud3272
    @ahmedabdulahimahamud3272 Год назад

    Thank you so much, from the date I found your Channel, I admire data cleaning and analyzing it in pivot tables. Thank you once again

    • @ifoodieTV
      @ifoodieTV 5 месяцев назад

      Where did you start from? He has a lot of videos.

  • @Uttarakhandi214
    @Uttarakhandi214 14 дней назад

    thank you chandoo sir....making things awesome

  • @sairamadaboina8257
    @sairamadaboina8257 8 месяцев назад +1

    Thank you Sir, good explanation, please upload more and more videos.

  • @Sandroider
    @Sandroider Год назад

    Thanks! 8:22 it is usually good to check how many duplicates there are using View - Data Preview

  • @thuynportalios2337
    @thuynportalios2337 10 месяцев назад

    I am a beginner to learn about Power Query and your video is easy to understand and follow your steps. When dealing with blanks, if a row is not blank all the way and is deleted, all information in other columns across the row will also be deleted. Will that be a concern when cleaning up the data? Thanks.

  • @chrism9037
    @chrism9037 Год назад

    Thanks Chandoo! PQ is so amazing, I am still learning and have only scratched the surface of how to use it

  • @mauricioalejandro74
    @mauricioalejandro74 Год назад

    Is it just me or does Chandoo have a soothing therapeutic voice?

  • @kamaur01
    @kamaur01 Год назад

    @Chandoo you are always good. I didn't even finish the video, and I already like what I'm learning. Great video and thank you.

  • @kwesikwesi4261
    @kwesikwesi4261 Год назад

    This is soooooo cool and understanding. Very slow and explainable. Thank you sir

  • @thiagarajanneelamegam8640
    @thiagarajanneelamegam8640 3 месяца назад

    Your an awesome tutor bro!. thank you so much.

  • @reazahmed7004
    @reazahmed7004 Год назад

    You are just amazing! I was able to follow you 100%. Keep up your good work.

  • @mantis1787
    @mantis1787 5 месяцев назад

    That shirt! 😀 I appreciate your teaching and humor, Chandoo!

  • @shaikjalal1274
    @shaikjalal1274 Год назад

    Hello Chandoo i have seen your RUclips content and i love that its awsom and unique. thankyou your doing well 👏👏👍😇

  • @pgkannan
    @pgkannan Год назад

    Excellent power query logic will help both Excel and Power BI

  • @GuyOrlov
    @GuyOrlov Год назад +1

    I am big fan of your channel, I love that, I am in the data analyst training, I would love to understand more use DAX tricks too, it seems a bit harsh to study!

  • @jasongins
    @jasongins Год назад

    Tip: Disable the background refresh on the query. I noticed my pivot tables were still showing old data after hitting "refresh all." Disabling background refresh on the query will force the pivot tables to wait for the query to complete before they refresh and you will no longer have to refresh to pivot tables separately.

    • @Lobsterman777
      @Lobsterman777 Год назад

      Wow, interesting! Actually I like to put refresh pivots later because I can trank what are changes done and can easily undo/redo then, but still nice to know! :)

  • @SaleemKhan-hm2br
    @SaleemKhan-hm2br Год назад

    Thank you Chandoo Jee. Thanks for sharing your knowledge and experience.

  • @rajnikantpandit3323
    @rajnikantpandit3323 3 месяца назад

    Thanks for making it simple😊😊

  • @MrDhunpagla
    @MrDhunpagla Год назад

    Gurudev 🙏this one is absolutely necessary one for us & you put it in an awesome manner like always....Thanks a lot

  • @AdeshGhodekar-j2w
    @AdeshGhodekar-j2w 9 месяцев назад

    Such incredible and inspiring content for datasets. Thank you, sir

  • @mitch6912
    @mitch6912 Год назад +1

    Amazing knowledge. Thanks for sharing Chandoo

  • @vinodkamath2057
    @vinodkamath2057 Год назад

    You are a great teacher Sir.. This tutorial has changed a lot in my working.. I bow down to you 😢🙏🙏❤

    • @chandoo_
      @chandoo_  Год назад

      You are very welcome

  • @napstervn
    @napstervn Год назад

    thank you so much for the very quickly useful and informative lesson

  • @dr.abraham_mallela
    @dr.abraham_mallela Год назад +3

    Amazing video as alwyas sir. I just have one doubt. what is your take on IBM SPSS as a data analysis software ?

  • @dwemer2610
    @dwemer2610 Год назад

    Power query's very useful as the intermediate step in between data e datavis, if you don't know good sql, your (power) querys, so as yours BIs, will be as performatic as a potato, when you're working with big datasets. Also, everything power query can do, dax can do better and more performatic, obviously once you load your raw, but clean, data with power query. As for me i'll confess once i started use sql and dax, power query only serves for me to load the data when not using direct query.

  • @GoGoTwice
    @GoGoTwice Год назад

    Thank you for this great tutorial/walkthrough, really helpful and just the right speed!

  • @lokeshr9225
    @lokeshr9225 Год назад +1

    Excited and waiting for your valuable content sir❤️

  • @awesomeraj953
    @awesomeraj953 Год назад

    Today, this is your 3rd video which I am watching and learning from.

  • @niladribiswas7667
    @niladribiswas7667 Год назад +1

    Such incredible and inspiring content for data lovers. Thank you, sir, 💙

  • @bijayagiri5746
    @bijayagiri5746 Год назад

    hello brother. Just one request. You are expert in excel. Please do make Excel tutorials for beginner. Yes there are lot of resources available but I believe if you do it it will definitely cover everything. Thanks from Nepal.

    • @kpoddarmeasme
      @kpoddarmeasme Год назад +2

      Hi Bijaya, There are a few videos in the playlist of this channel, u can have a look and learn from them.

    • @chandoo_
      @chandoo_  Год назад +1

      Please see the Getting started with Excel tutorial. ruclips.net/video/F7aPazuS8QY/видео.html

  • @rjbanavar
    @rjbanavar Год назад

    Thanks a Ton sir. I had enrolled for course on PQ, but guy had made it so boring and untasteful.
    You just made it so interesting 🙏

  • @mirateequrrahman8478
    @mirateequrrahman8478 Год назад

    You're fabulous sir.... Much much respect...👏👏

  • @HiteshSawant-d9v
    @HiteshSawant-d9v 7 месяцев назад +1

    I found you the finest and easiest mentor. .. Love your teaching pattern

  • @AmyhoGeokmui
    @AmyhoGeokmui 11 месяцев назад

    It is so informative and helpful …many thanks, chandoo

  • @adsonnet
    @adsonnet Год назад

    we are waiting for it till now, Thank you.

  • @manjit.sarania
    @manjit.sarania Год назад

    Very good explanation.the details sir

  • @markreichard2144
    @markreichard2144 Год назад

    Another excellent video with clear explanations and examples.

  • @ManishKumar-jx4eg
    @ManishKumar-jx4eg Год назад

    Thank you for this excellent power query session, you alwasy make it look easy & understandable. :)

  • @shubh.vaishnav
    @shubh.vaishnav 10 месяцев назад

    Thanks buddy 😊
    Great video with great explanation.

  • @olivialinden8699
    @olivialinden8699 Месяц назад

    very useful, thank you so much

  • @lavon4111
    @lavon4111 Год назад

    Chandoo. I really appreciate your channel. I’m learning a lot as I’m wanting to become a DA. I was wondering. How important is it to learn SQL? It seems Excel and Power BI alone is enough for data analysis.

  • @MrPapiBanda
    @MrPapiBanda Год назад

    Great video..wants more videos like this.
    ♥ from Bangladesh

  • @avishekd4229
    @avishekd4229 Год назад

    Thank you Chandoo for educating us

  • @zaafirc369
    @zaafirc369 Год назад

    Good video to show the power of Power Query. It definitely facilitates data cleaning, be it in Excel or Power BI. I wish it worked with big data. It tends to get really slow as the data size increases.
    But overall, it is a good tool to have.

    • @ganeshn3800
      @ganeshn3800 Год назад

      So for big data... What are the options? I mean VBA or any other tool we have? Thanks.

  • @nicouekuete8842
    @nicouekuete8842 Год назад

    That t-shirt is fire!!!

  • @creativeblock377
    @creativeblock377 4 месяца назад

    Very detailed explanation ❤

  • @mattmatt245
    @mattmatt245 Год назад

    I agree that PQ does it all however most data analyst jobs still require SQL and/or Python.

  • @badrinathhn710
    @badrinathhn710 8 дней назад

    Anna Nee videos next level untaayi anna

  • @deepakverma79998
    @deepakverma79998 Год назад

    you are awesome Mr. Chandoo.....Chandoo Bhiya here Deepak

  • @gonzalofuste
    @gonzalofuste Год назад

    great job Chandoo¡¡ you have created a really interesting channel ¡¡¡

  • @anandl2003
    @anandl2003 Год назад

    Hello This awesome Kudos! Chandoo Great thanks a lot. Sure will love to learn more about power query.👍🏼🙂

  • @waniabhijeet95
    @waniabhijeet95 Год назад +4

    Great video.
    I use Google Sheets/BigQuery and Data studio on a regular basis and this looks very similar to what I can achieve using the above mentioned tools
    Could you make a comparison video stating the differences and why one should learn to use the Microsofts suite of tools over Google?

    • @VJSarah
      @VJSarah Год назад

      Many shortcuts can’t work in sheets which we have in excel and The features of inbuilt library like automated functions are broad in excel compared to sheets.

  • @anwarmohdsha
    @anwarmohdsha 8 месяцев назад

    more power to you Chandoo, thanks for this video

  • @syedtahirbukhari8377
    @syedtahirbukhari8377 Месяц назад

    Very nice video i have seen so far ...make dex and m codes like that simple way for laymens

  • @moisestatis5418
    @moisestatis5418 Год назад

    Chandoo, thanks for your advice with examples. Great tool, and I have already started to learn it. A question: why do you have 2 keyboards? 😁

  • @evapinter2326
    @evapinter2326 Год назад

    Thank you so much. I am watching your videos and becoming awsome in Excel

  • @danjarupath
    @danjarupath Год назад

    7:00 select..remove empty is better untick null, blank

  • @morrismaina1413
    @morrismaina1413 Год назад

    You are a great teacher!

  • @muhammednaijun
    @muhammednaijun Год назад +1

    Hi Frnds,
    Does Mac version of Office Excel have Power Query or Power BI?

  • @minadev1
    @minadev1 10 месяцев назад

    Thank you!!!!!!!!!!!!!!!!!!!!!!!!!!!!! kindly make more such videos

  • @AyushDubey205
    @AyushDubey205 Год назад +3

    Hi Chandoo!!
    Thanks a lot for this. You have been helping me a lot with PQ.
    I have prepared a data using PQ which has more than 10k rows and it takes good time to refresh the queries.
    Is it normal or is there any way to reduce the time?
    Please note that i have already tried disabling background preview option but still no change. Please help 🙌🙌

    • @chandoo_
      @chandoo_  Год назад +1

      The time taken by PQ depends on what you are doing in the steps and the order you are doing them. I suggest removing the steps one at a time to figure out which one is causing the bottleneck. Then restructure your transformations so that the steps happen faster.
      Sometimes, delays can be caused by slow data sources (such as databases with weak servers or web sources that have long wait times)

    • @AyushDubey205
      @AyushDubey205 Год назад

      Hi @@chandoo_ thank you so much for replying..
      I checked and realised its the same step which i was suspecting too.
      I basically had to do a lookup. Therefore, i merged the query and while expanding the column i had to expand almost 8 columns from another table.
      This is what taking most of the time.
      Is there anyway to improvise the step? Please advise .. much appreciated!! ❤️

    • @chandoo_
      @chandoo_  Год назад +1

      Merges are costly operations. You can leave the tables as they are and set up a relationship in Power Pivot (for both Excel and Power BI) if you don't need the physical column.

  • @silvestrecamposano6317
    @silvestrecamposano6317 Год назад

    Thanks again, Sir!... Am an avid fan....

  • @dushanthan50
    @dushanthan50 Год назад

    It Helps man !! Thanks for the video

  • @WorldEnder
    @WorldEnder Год назад

    By simply removing the empty payments, you ignore the situation where one student enrolled to more than one course, fully paid for one but didn't pay for another. By removing empty course names you ignore the error of the school operator and you can have a situation where the student made a payment but the operator forgot to write the course name. By removing the duplicates you ignore the situation where one student made multiple partial payments to one course but in total should be fully paid. Can I be a data analyst now and earn $$$$$?

  • @cassiemeyer1164
    @cassiemeyer1164 Год назад

    So good! Thank you Chandoo!!!

  • @isampellisandhyaranisandhy6214

    Please do more such videos like trend skills other that coding which can tend to grab a job for non technical job holders

  • @7dx549
    @7dx549 Год назад

    Simple and more powerful✅