Get Data from Power BI Dataset in Power Apps | Power BI and Power Apps

Sdílet
Vložit
  • čas přidán 12. 07. 2024
  • In this video, you will learn how you can fetch data from the power bi dataset into power apps.
    Power Automate Code:
    EVALUATE SELECTCOLUMNS(TOPN(10,Customer),"ID",[ID],"Product",[Product])
    replace(replace(variables('vrCustomerRecords'),'[ID]','ID'),'[Product]','Product')
    DAX Queries: learn.microsoft.com/en-us/dax...
    ---------------------------------------------------------------------------------------------------------------------------
    Follow me on Twitter to get Office 365 updates:
    Twitter:
    / sagarsharma94​
    Gmail: contactdstechmirror@gmail.com
    Facebook:
    Join the Facebook group to collaborate with SharePoint Community
    / 52910​. .
    ---------------------------------------------------------------------------------------------------------------------------
    Like, Share, and Subscribe to our channel for more informative and development-related videos. Much Love! Keep Learning! :)
  • Věda a technologie

Komentáře • 25

  • @jacobparker6460
    @jacobparker6460 Před 5 měsíci +2

    My friend you are true hero. Thank you so much.

  • @piotrkuc8936
    @piotrkuc8936 Před 9 dny

    Thank you!

  • @carlosmagnosantossilva9920
    @carlosmagnosantossilva9920 Před 5 měsíci +1

    meu caro, você realmente fez a diferença hoje pra mim. Obrigado!

  • @viniciuscg12ba
    @viniciuscg12ba Před 8 měsíci

    Amazing! Thanks

  • @rodrsturge663
    @rodrsturge663 Před rokem +3

    Very helpful. If you have lots of columns just replace the brackets with nothing.
    replace(replace(variables('myVariable'),'[',''),']','')

    • @rodrsturge663
      @rodrsturge663 Před rokem +2

      That is actually a little messy, because then you have to add back the [ at the start and the ] at the end of the collection for the parser to work.

    • @Havegoogday06
      @Havegoogday06 Před 11 měsíci

      @@rodrsturge663 Im bringing like 30 columns from my pbi dataset, do i need to do the replace function for every single one of them? :O

    • @pablopapis
      @pablopapis Před 2 měsíci +1

      this is quite simple to add brackets and the beginning and the end:
      concat('[',
      concat(
      replace(replace(variables('varDataAsString'),'[',''),']',''),']'
      ))

  • @aldorosenfeldjr
    @aldorosenfeldjr Před 8 měsíci

    Great content, thanks for sharing

  • @mrutuber4496
    @mrutuber4496 Před 2 měsíci

    Thank you🎉❤

  • @manouk691
    @manouk691 Před měsícem +1

    Wow, thank you!

  • @North2World
    @North2World Před 9 měsíci

    Nice!

  • @user-cd2hg1fg7s
    @user-cd2hg1fg7s Před měsícem +1

    Can you please upload a video showing how to use an edit form in Power Apps with a Power BI dataset?

  • @jdduf
    @jdduf Před 4 měsíci

    Many thanks for this tutorial! For the most part, this worked for me, but I found that my dataset is returning to PowerApps with a LOT of empty rows. Do you have any suggestions for getting the empty rows out? I attempted to filter these out in my PowerBI query but this didn’t change the results. Thank you!

  • @mihirsoni3035
    @mihirsoni3035 Před 5 měsíci

    thanks for the informative video!
    btw is there any way to store the data coming here to a new /existing sharepoint list ?

  • @JaimeGarcia-fj5by
    @JaimeGarcia-fj5by Před měsícem

    Hi, i had any problems, for example, in the power automate, I can´t to assig "string" type to the "Initialize variable" Object. I had to put in the "compose" object the next code:
    concat('[',
    replace(
    replace(
    join(variables('MS_ARTICULOS_2'),','),
    '[',''),
    ']',''),']')
    with this, in power app, don´t show a error in the PARSEJSON.

  • @benoymammenmathew825
    @benoymammenmathew825 Před rokem

    Hi DSTechMirror, insightful video.
    How do I filter the data in the power BI dataset, i tried taking an input from the Power Apps and passing it into to the DAX formula, however I am running into an error 502 code in Power Apps. Could you make a video on this as well?

  • @nishaboby6213
    @nishaboby6213 Před 3 měsíci

    do we have to make the triggers separately ? I couldnt find the powerapps trigger.

  • @vodias2007
    @vodias2007 Před 8 měsíci

    This flow will work for any user other than me? I mean, if I share my App to other users but not share my PowerBI dataset, they will be able to query my dataset?

  • @eduardodallabrida1976
    @eduardodallabrida1976 Před 8 měsíci

    my data type "Table"....is it possible to work with this format?

  • @parranoic
    @parranoic Před měsícem

    Replace [ with '' and ] with ''