web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / dont appear informatio...
Power Apps
Answered

dont appear information in some item lists (when it should)

(1) ShareShare
ReportReport
Posted on by 943 Season of Giving Solutions 2025
Hi!
 
I have comboboxes that filters items in a list and shows the information in a container. There is something wrong with some of them that when selected, it doesn't show up. Look:
This is how it should look when that combobox is selected because it means it exists and all of the items has information:
But when I select some of them, the container remains blank:
That doesn't make sense because if the second combobox is selected it means it exists and it should show in the gallery below them and the information in the container on the right. Why is not showing? It could be for this issue?
The code is this in the last combobox where it later is wrong n the gallery:
With(
    {
        _allRecords: Filter(
            'Cartera proves diagnostiques 2026_final',   //Your SharePoint List - Please replace if it's wrong
            UPOrigen.Value = ComboBox_Origen1.Selected.Value, //AGA Combobox name - Replace 'AGAComboBox' your combobox control name
            'Codi/Descripció'  = 'ComboBox_Codi/Descripció'.Selected.Value //SecondComoboBox - Replace 'SecondComoboBox' with your control name
)//ESPECIALITAT  - Replace this with the SharePoint column that you want to compare with the second dropdown column
    },
    SortByColumns(
        Distinct(
            _allRecords,
            'UP Desti' //Your SharePoint column name – the column you want to display as a selection.
        ),
        "Value",
        SortOrder.Ascending
    )
)
This is the gallery code: where "UP Desti" is yellow with that issue:
Filter(
    'Cartera proves diagnostiques 2026_final',
    (IsBlank(ComboBox_Origen1.Selected)
        || UPOrigen.Value = ComboBox_Origen1.Selected.Value
    )
    &&
    (IsBlank('ComboBox_Codi/Descripció'.Selected)
        || 'Codi/Descripció' = 'ComboBox_Codi/Descripció'.Selected.Value
    )
    &&
    (IsBlank('ComboBox_UP/Destí'.Selected)
        || 'UP Desti' = 'ComboBox_UP/Destí'.Selected.Value
    )
)
 
Categories:
I have the same question (0)
  • Verified answer
    WarrenBelz Profile Picture
    155,838 Most Valuable Professional on at
    I suspect that you have a Choice or Lookup column in there.  I have also added some suggestions on detecting empty controls.
    Filter(
       'Cartera proves diagnostiques 2026_final',
       (
          Len(ComboBox_Origen1.Selected.Value) = 0 ||
          UPOrigen.Value = ComboBox_Origen1.Selected.Value
       ) &&
       (
          Len('ComboBox_Codi/Descripció'.Selected.Value) = 0 || 
          'Codi/Descripció' = 'ComboBox_Codi/Descripció'.Selected.Value
       ) &&
       (
          Len('ComboBox_UP/Destí'.Selected.Value) = 0 || 
          'UP Desti'.Value = 'ComboBox_UP/Destí'.Selected.Value
       )
    )
     
    Please Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider answering Yes to Was this reply helpful? or give it a Like
    Visit my blog
    Practical Power Apps    LinkedIn  
  • Charlie Martharper Profile Picture
    943 Season of Giving Solutions 2025 on at
    Hi! @WarrenBelz
    Yes! The combobox "Origen" is choice column, the others are text.
    I have the same problem with others, the last example works but another per exemple is still blank when selected:
    There is still a warning on the gallery with the issue I showed before. that UP Destí (last combobox). The last part of the formula is highlighted and might not work correctly with the UP DESTÍ on large data sets (1k items aprox). This is the higlighted part:
  • WarrenBelz Profile Picture
    155,838 Most Valuable Professional on at
    Can you please post a screen shot from your SharePoint List Settings for the 'UP Desti' field. Also how many records are in the 'Cartera proves diagnostiques 2026_final' list ?
     
    What you have there is a Delegation warning, so I suspect that 'UP Desti' is not a Single Line of Text. Also if the filter is not Delegable (which it is telling you is true), it will only search the first 500 records (so that is why you have records missing). I have a blog on Delegation, which may be useful for you.
     
    Please Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider answering Yes to Was this reply helpful? or give it a Like
    Visit my blog
    Practical Power Apps    LinkedIn  
  • Charlie Martharper Profile Picture
    943 Season of Giving Solutions 2025 on at
    You are right! 
     
    "UP Destí" column was multiple lane text, I changed it to single lane text and it worked!
     
    Thank you so much! I will have a look into your blog, no the first time! :)

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard