Power BI DAX Tutorial (12/50) - What is Related Function

Поділитися
Вставка
  • Опубліковано 15 січ 2025

КОМЕНТАРІ • 35

  • @siddheshdandagavhal9804
    @siddheshdandagavhal9804 5 місяців тому +3

    In DAX you can use only one table. If you need a metric from other table you need to pull the date in the measure table which is inefficient. To overcome this issue we have related function:
    Profit = SUMX(Sales, Sales[Quantity] * Related['Product Master'[Cost Price]))
    Related used the Data Model Relationships to seek the related values from other table

  • @9854660186
    @9854660186 2 роки тому +1

    This was Really Helpful! Thanks For this Video.

  • @alvegrande7398
    @alvegrande7398 2 роки тому +1

    I finally get it nowwww. Thank you so much!

  • @akashhanchatet-2842
    @akashhanchatet-2842 9 місяців тому +1

    Thank you, sir 🙏🏻❤️📜✨

  • @nagsiva2843
    @nagsiva2843 2 роки тому +2

    Is there anyway we can specify the columns from other tables in the formula without creating relationship between them ?

    • @AnalyticswithNags
      @AnalyticswithNags  2 роки тому

      Check the channel searching Treatas Dax functions. Which doesn’t require relationship

  • @saratchandra7388
    @saratchandra7388 3 роки тому +1

    is that rows in both tables should be same or different ,there may be case where rows from related table different how to handle that. Thanks for your answer.

    • @AnalyticswithNags
      @AnalyticswithNags  3 роки тому +2

      The dimension table can contain more members than the fact table, and where as fact should have members that exist in dimension table. Obviously related function should refer to dimension table most of the case and member should exist

  • @kumargunjan428
    @kumargunjan428 Рік тому

    Nicely explained… thanks nags for all these awesome content ❤️❤️

  • @sravankumar1767
    @sravankumar1767 4 роки тому

    your way of explanation is awesome , do more videos on dax, am eagerly waiting for your videos

    • @AnalyticswithNags
      @AnalyticswithNags  4 роки тому

      Thank you, I will

    • @kareemcain6174
      @kareemcain6174 3 роки тому

      Dont know if anyone cares but if you are bored like me atm you can stream all the latest series on instaflixxer. Have been binge watching with my girlfriend for the last months xD

    • @willgiovanni2041
      @willgiovanni2041 3 роки тому

      @Kareem Cain Definitely, I have been watching on instaflixxer for since november myself :)

  • @krishnaskills7459
    @krishnaskills7459 3 роки тому

    ur explanation is well plz provide sales table practise purpose

    • @AnalyticswithNags
      @AnalyticswithNags  3 роки тому

      For simple dataset we don't maintain it , we delete it , create your own data.

  • @datawhipper
    @datawhipper 3 роки тому

    How about using RELATEDTABLE since you have a one to many relationship?

    • @AnalyticswithNags
      @AnalyticswithNags  3 роки тому +1

      docs.microsoft.com/en-us/dax/relatedtable-function-dax

  • @divyagadi9512
    @divyagadi9512 4 роки тому

    When you will explain remaining DAX function

    • @AnalyticswithNags
      @AnalyticswithNags  4 роки тому

      Will surely update soon. Follow the channel updates

    • @AnalyticswithNags
      @AnalyticswithNags  4 роки тому

      You can look at the Playlists section and DAX playlist for specific Updates.

  • @bhupendersingh6673
    @bhupendersingh6673 4 роки тому

    Sir You video is very helpful I am watching on daily basis. I really like. Sir Can we also get data from Dimdate to Product table

  • @aryansena7290
    @aryansena7290 4 роки тому

    Need difference between related nd related table

  • @ashishmohan4707
    @ashishmohan4707 4 роки тому

    Hi very useful video and very practical need everyone for every project ......very big thanks to share with us.
    If it can possible can you plzz provide us excel data file which you used.
    Very greatful for us...👌👌👌👌👌👌👌👌💐💐💐💐🎂🎂🎂🎂🎂🎂🎂🎂🎂🎂🎂🎂

  • @AmitKumar-ee7xj
    @AmitKumar-ee7xj 2 роки тому +1

    We can only use "Related" when we are going with the flow of relationship bcz if we are going against the flow then related will not work. I guess you have to add this in your video