How to use RELATED / RELATEDTABLE DAX functions in Power BI // Beginners Guide to Power BI in 2021

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

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

  • @raminamin3194
    @raminamin3194 3 года назад +8

    Thank God. Someone finally explained this clearly. Thank you

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

    This is very useful and well explained. I was inspired to create another measure
    Products bought = CONCATENATEX(RELATEDTABLE(Orders),Orders[Product],UNICHAR(10))
    which is the kind of thing I want to use in reporting to have multiple text entries. Thanks for the video!

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

    I find this very useful and comprehensive. I would just also explain “why” you can use the relate only on the many table of the relationships.

  • @kesavanandt1195
    @kesavanandt1195 3 года назад +2

    I became fan of you by the way of your explanation .. sir... we need a live session to interact with you.. if its possible.

    • @SolutionsAbroad
      @SolutionsAbroad  3 года назад

      Thank you, appreciate your kind words! I'll think about it!

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

    Clear and concise explanations!
    You really helped me in learning, thank you so much.

  • @tuandino6990
    @tuandino6990 2 года назад

    best explanation of related table on youtube. Thanks you sir

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

    Thank you 🎉

  • @sumit-visatotravel8780
    @sumit-visatotravel8780 3 года назад +1

    Really Nice and easy to understand through this video.

  • @rakkesh85
    @rakkesh85 3 года назад +1

    Very nice explanation, kindly update more videos on DAX. Loved your explanation and content.

    • @SolutionsAbroad
      @SolutionsAbroad  3 года назад

      Great to hear that, thanks for watching Rakesh!

  • @simofleanta
    @simofleanta 3 года назад +1

    Man you saved my night :)) !!

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

    Dear
    How about if one dataset is connected using the direct query and from that table one names wanted to bring it to another table!

  • @Varun.Khanna1602
    @Varun.Khanna1602 3 года назад +1

    Excellent, thank you

  • @jalalkasmani2575
    @jalalkasmani2575 2 года назад

    thanks for the video. what if i want to bring text values using relatedtable in one relationship table ? sumx gives error.

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

      You can use something like the following. CONCATENATEX is also an iterator function:
      Products bought = CONCATENATEX(RELATEDTABLE(Orders),Orders[Product],UNICHAR(10))

  • @kennethstephani692
    @kennethstephani692 3 года назад +1

    Great video!

  • @jagjeetrathore9122
    @jagjeetrathore9122 2 месяца назад

    excellent

  • @SachinKumar-dn5xu
    @SachinKumar-dn5xu 2 года назад

    really good job man.. thanks:)

  • @TheJaebeomPark
    @TheJaebeomPark 7 месяцев назад

    good to understand!

  • @mouli-123
    @mouli-123 2 года назад +1

    Hi, for me the relatedtable is not working. When I added a column with a relatedtable function, I got the total sum of the expression in every row of that column.
    I am not sure what the mistake is, I did everything you did. Could you recognise this kind of error and help me ?

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

      Hi there, perhaps its to do with the relationship you've set up? The column you create needs to be in the "Many" side of the relationship

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

    EXCELLENT

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

    What if you're using Direct Query? These don't work with direct query.

  • @sarar941
    @sarar941 3 года назад +1

    Why do you need related when you already have a join?? Just grab the customer name from the customer table

    • @SolutionsAbroad
      @SolutionsAbroad  3 года назад +2

      To be honest I dont use RELATED function all that often because a join already creates the relationship between the two tables. I can only assume they imported this function as a replacement for VLOOKUP in excel and is another way to achieve the same result

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

      I think you use it when the table is 2 or more relationships away. e.g.. sales

  • @tojonirinarandrianarivelo2100
    @tojonirinarandrianarivelo2100 3 года назад +1

    Are you from Madagascar ? ^^

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

    In my opinion these functions are completely useless in Power BI. You don't really need to add these vlookup columns because they're already connected and you can use them in any kind of visuals.

  • @EnneagramTarot-zu8kp
    @EnneagramTarot-zu8kp Год назад

    *CALCULATED COLUMNS*
    2:27- RELATED
    4:19- RELATEDTABLE
    5:40- SUMX(RELATEDTABLE)
    *MEASURES*
    6:30- SUM (if you don't need a column) (although this doesn't give row context until you put other fields in the table)