[PowerApps QuickTips] FILTER with SELECTMULTIPLE on BOTH sides

Sdílet
Vložit
  • čas přidán 28. 08. 2024

Komentáře • 26

  • @rudivanderlocht3212
    @rudivanderlocht3212 Před rokem +2

    Well done Robin ! Also like your use of the HTML control

    • @R2Power
      @R2Power  Před rokem

      Thanks!
      HTML+Concat() is such a powerful tool!

  • @PeterHeffner
    @PeterHeffner Před rokem +1

    Tolle Idee, gut umgesetzt! Danke Robin!

  • @medug5556
    @medug5556 Před 19 dny

    Incomplete explanation 🤔🤔😔😔I came here to get an idea for the assigned to filter and you brushed it off....I have multi select ppl picker in SP and I want to filter in PowerApps using combo box. basically i want to apply the same filter functionality we have in SP . When you go to filter it does display the assigned users in the items and I'd pick myself and it only displays tasks assigned to me. Does your soln work for this requirement ?

  • @Gilgameshx
    @Gilgameshx Před rokem +1

    How we can get the index dynamicly, in case that we have a combo box of 'N' elements? also how you do the shadow-box design bro?. By the way nice explained man

    • @R2Power
      @R2Power  Před rokem

      I don't have a better solution, so the number of selected values is limited to how many you provide. But normally 3-5 is more than sufficient.
      The "boxes" are html-Textfields with Concat()
      You can peek at the code here (german): czcams.com/video/TWYZib96rlo/video.html

  • @umeshbaradkar9697
    @umeshbaradkar9697 Před rokem +2

    In function is delgeable.
    Showing Delegation warning.

  • @FrotteeLoewe
    @FrotteeLoewe Před 9 měsíci +1

    Hi Robin, kannst du mal irgendwo zeigen, wie du diese unterschiedlich langen Pillen in der Tools-Spalte in der Galerie arrangierst? Das wäre mega, ich bekomme das einfach nicht hin.

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

      Hier in dem Video ist es das 3. Beispiel
      czcams.com/video/TWYZib96rlo/video.html

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

      @@R2Power Danke, das Video kenn ich natürlich. Ich wollte es gerne ohne HTML lösen. Trotzdem vielen Dank für die schnelle Rückmeldung.

  • @MrOwenjames24
    @MrOwenjames24 Před 7 měsíci +1

    Hi, tried using this solution but I am getting the error "the index function cannot be called with an empty table" - any ideas? The filter has nothing selected...and when I do select fewer values than the highest index it does not like it

    • @R2Power
      @R2Power  Před 7 měsíci

      Sorry, no idea without looking at the code directly

    • @MrOwenjames24
      @MrOwenjames24 Před 7 měsíci

      I've used the code in this video but obviously swapping out for my columns and combo box@@R2Power

    • @R2Power
      @R2Power  Před 7 měsíci

      @@MrOwenjames24 just opened my app in edit mode and it still works, so it seems to be on your side

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

      I was getting the same error as you did and found a solution. Replace the IsBlank function with an IsBlankOrError function and make sure that this part of the statement is placed before the Index part of the statement so that it prevents the Index function from failing when the criteria is not met. In other words flip the statements to start like this: IsBlankOrError(Index(…SelectedItems,1)) Or Index(…SelectedItems,1) in …, etc

  • @sahilsami8840
    @sahilsami8840 Před 10 měsíci +1

    Hi Robin! Can you please share HTML text value here for Tools you have used in gallery?

    • @R2Power
      @R2Power  Před 10 měsíci

      I have a german html video, where you can find a similar style.
      Here is the timestamp: czcams.com/video/TWYZib96rlo/video.htmlsi=54dKNuq694eBApKZ&t=962

    • @sahilsami8840
      @sahilsami8840 Před 10 měsíci

      @@R2Power went through the video you shared and got to know the idea you have implemented. But I need exact HTML text code you have used here for choice value. It would be helpful if you please text the code over here.

  • @user-sl4oe9cz3f
    @user-sl4oe9cz3f Před rokem

    Hi, sehr gutes video. Kannst du mir bitte mal zeigen wie ich es mit Sharepoint verknüpfen kann und mit Filtern die Multiauswahl spalte filtern kann

    • @R2Power
      @R2Power  Před rokem

      das ist doch exakt was ich in dem Video zeige oder?

    • @user-sl4oe9cz3f
      @user-sl4oe9cz3f Před rokem

      @@R2Power Hi, nein. Wäre es okay, wenn ich dich auf Telegram oder über andere Medien direkt kontaktieren kann? Ich habe ein Projekt von meinem Chef und dazu brauche ich genau deine Hilfe - ich bitte dich.

  • @laszlokovacs7411
    @laszlokovacs7411 Před rokem

    Delegation warning is not cool. It messes up your app in the long run. This is not a viable option for SharePoint list unfortunately because they cannot delegate the "in" filter.

    • @R2Power
      @R2Power  Před rokem +1

      it doesn't "mess" up your app.
      It just doesn't work properly for >2000 rows, which are two completely different things