How to APPEND or MERGE data / DAX or Power Query // Demo + Best Practices when using with Power BI

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ม.ค. 2025

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

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

    Thanks a lot, I didn't know how to make a SQL Select/Union in DAX and you demonstrate it with excellence.

  • @alexking8222
    @alexking8222 3 ปีที่แล้ว +3

    This was perfect, exactly what I was looking for :-)

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

    Awesome thank you so much 🍀🍀🍀

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

    Thanks! Very good tip and very well explained.

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

    Really helpful, thanks a lot.

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

    VERY HELPFUL!

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

    As a best practice, if you append in Power Query, should you turn off enable load on the original queries so that only the full table gets loaded? If you don't do this, when you load the tables, will it effectively update the data twice for each table?

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

      Hi there great question! So queries no set to load will still be used by Power Query to process your steps, it just won’t be loaded to your final results, which does reduce the load time (since power bi has less tables to load) as best practice you should only load data that you’ll use for any calculations or visualisations

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

    great video, tks so much :)

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

    Every insightful.

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

    Can we update , insert two table in dax

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

    Can we append a table and power bi dataset other report

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

    whats the difference between merge, append, and union? thanks

    • @davidlopez-fe2lb
      @davidlopez-fe2lb 2 ปีที่แล้ว

      Append & Merge is Power BI's version of Joins & Unions. Append = Union & Merge = Join.

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

    If you need to both Append and Merge, is it better/more efficient/effective (from a memory standpoint, etc.) to Merge and then Append, or Append and then Merge?
    Thanks.

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

      Hey JJ, super amazing question! From your logic it sounds like a Merging and Appending would result in incorrect and fewer data (Appending after will not match any values in your second table). A more efficient way to handle this correctly is to append your data then create a relationship between your two tables

    • @davidlopez-fe2lb
      @davidlopez-fe2lb 2 ปีที่แล้ว

      Append then Merge, if not you'll be doing a very similar merge multiple times....i.e. merge on country from region table to sales table for month 1 and then do it again for month 2 and then do it again for month 3, so 1 append and 3 merges. As opposed to Appending Month 1/2/3 and then doing the merge, so it'd be 1 append and 1 merge, also as mentioned a dynamic relationship is even better.