The Magic of Records in Power Query || Display Advanced Calculations Step-by-Step

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

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

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

    Download the File ⬇ - goodly.co.in/explore-magic-of-records/
    Join the waitlist for Power Query's M Language course↗ - subscribepage.io/Learn_Power_Querys_M_Language

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

      Jab promo trailer itna acha hai toh movie kitni achi hogi.... All the best Chandeep for upcoming M code. Lots of love to goodly ❤

  • @AnilKumar-lf5jt
    @AnilKumar-lf5jt Год назад +12

    Okay now power query is becoming addictive thanks to you. Loving to use it as much as possible in regular work...

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

      Thanks Ani :)

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

      Yes anil it is definitely fun n addictive. I spend more time on it than my actual test automation work 😁. I hope i could switch to this lovely thing PQ

    • @AnilKumar-lf5jt
      @AnilKumar-lf5jt Год назад +1

      @@shirsN instead of simply copy paste, I'm using PQ for every small thing 😂

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

    Thanks!

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

    The best possible explanation of records. Very bright, as always. Thank you.

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

    Danke!

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

    Great 💯👍

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

    Amazing! Besides the main topic of the video I´m thrilled to learn that you can have if-clauses in the in-statement. Thank you!

    • @cristian.angyal
      @cristian.angyal Год назад

      ⚠ Having a calculation (any calculation) in the in-statement will "hide" all the steps in the Query Pane

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

    WOW! AWESOME!!!! 👏

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

    So creative. Total is more than the sum of its parts.
    I love you videos.

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

    Bloody brilliant. I also love the comment about using records for Add columns.

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

      Sharp observation but I have a few more tricks on column additions

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

    Thank you sir from Zimbabwe

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

    This technic is an eye opener for me and opens up lot of other possibilities. Thanks for sharing Chandeep!

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

    You are truly a PQ genius

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

    Awesome! Thank you! good to learn also that you can have an if in the in statement!

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

    Very very smart way of working Goodly 😊

  • @cristian.angyal
    @cristian.angyal Год назад

    Great idea Chandeep! 👏
    Never thought of using records like this! 💡
    Thank you for sharing this!

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

    very, VERY good Chandeep! bahut acha man! Thank you

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

    Great video. Very interesting use of records.

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

    Brilliant!

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

    Interesting 🎉.. thanks for sharing 😊

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

    Interesting techniques.

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

    Most excellent, sir

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

    This is a great trick Chandeep, especially when building something new and validating the granularity of the data. Love it! 🔥

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

    Again some very interesting and useful knowledge. I work with teams who ask me for solutions, the teams are not always that good at saying what they want. I think I could use this to allow them to see which data in the calcuations are giving the true values and if they are working as they expect.

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

    Brilliant ❤

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

    Neat, thank you 😊 👌🏽.

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

    Nice way 👍🏻 will be helpful in some calculation in daily reporting

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

    Excellent!

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

    Intresting....

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

    Nice one as always.. 🤟

  • @googlegoogle-gg3dp
    @googlegoogle-gg3dp Год назад

    Zabardast.....love you

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

    Super duber bro !!!

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

    Awsome 😮

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

    Awesome❤

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

    Using records is also great for adding many columns in one step, then just expand the record to new columns.
    Reworked many a query where there have been multiple (sometimes > 10) #"Add Column" steps down to two steps - one for creating the record with each field (column) and one to expand the record to columns

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

      How did you populate the values in the columns? I assume it wasn't a static value, so were you able to use a formula? I'm really interested how you did this.

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

      @@larmondoflairallen4705 A table with two date columns named "Order Date" and "Due Date" - add two new columns calculating the age and an age bucket value. These steps need to be added via the Advanced Editor
      AddRecord = Table.AddColumn(Previous_Step_Name,
      "Record",
      each [
      Days = Duration.Days([Due Date] - [Order Date]),
      Age Bucket = if Days > 14 then "Overdue" else "Current"
      ],
      type [
      Days = Int64.Type,
      Age Bucket = text
      ]
      ),
      ExpandRecord = Table.ExpandRecordColumn(AddRecord,
      "Record",
      {"Days", "Age Bucket"}
      )

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

    Brilliant

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

    Dark theme with sunny shining bandana is super cool👏😁

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

    That was great, just the getting the record column as a true false could be so useful, have you thought about doing a video on
    what the MVP qualification covers, I think a lot of people would be interested unless MS have some rules regarding the matter.

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

    WOW !

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

    Chandeep you don’t stop amazing us with you brilliant ideas. Can I sign up for this course please?

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

    👏👏👏

  • @2zibster
    @2zibster Год назад

    Great tutorials, can you do a tutorial how to get date from current workbook, specific worksheet without creating a table?

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

      With the current workbook you can only input named ranges, so if you make the date a named range it can work. If you create a new workbook and link the previous workbook, you can then pull in the sheet you want even if there is no named range.

  • @AnilKumar-lf5jt
    @AnilKumar-lf5jt Год назад

    Hi, need some help here. I have a source from share point. I need to filter out some data for which i use merge query, but I get a privacy issue error. How to deal with it?
    If i make a new query with the loaded data and merge it, no issue. But in this method, I'm unable to replace the existing data, so I'll be getting two tables, one full data and one filtered data. Can you guide me on how to approach this issue?

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

    @GoodlyChandeep Hi I need help. i am developing a dashboard for Collections efficiency. i facing challenge , i want a table to display the aging of currant month and last few months and this should be dynamic based on today's date. if today is 16 oct then column name should be October, if today is 15th oct then column name should be Sep 2023. i created a measure and new parameter for changing column names dynamically. but when i am using the filter options like show data for last 4 months, the table names are not changing. and new parameter created is not interactive with the slicer.. please help me to solve this..

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

    I have a question regarding merge queries. When I merge varies and expand the columns I am getting some columns as null. There is question mark at the data type icon. Can you please help me with same I am stuck from long time

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

    Unbelievable

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

    Hi sir... could you please help me how to prepare a automated GST invoice series in power query for GST R-1 ... recently I am trying to do this but still I am not able. If you can any help, I will be grateful to you...

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

    Chandeep sir, Parvinder sir ko credit do, Same video create kiya hai aapne

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

    I asked you my data on email, but you did not respond.

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

    Sir please give some discount on your course BI

  • @Harish.Prasad.Semwal
    @Harish.Prasad.Semwal Год назад

    2:35

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

    @GoodlyChandeep Hi I need help. i am developing a dashboard for Collections efficiency. i facing challenge , i want a table to display the aging of currant month and last few months and this should be dynamic based on today's date. if today is 16 oct then column name should be October, if today is 15th oct then column name should be Sep 2023. i created a measure and new parameter for changing column names dynamically. but when i am using the filter options like show data for last 4 months, the table names are not changing. and new parameter created is not interactive with the slicer.. please help me to solve this..