I have a gallery with a datasource FavMix which is an Excel table on OneDrive. There are several blank rows in this table which are showing up as blank records within the gallery that I would like to hide. One of the column names is MixName. I have the following formula within the Visible property of the gallery:
Filter(FavMix,!IsBlank(MixName))
I have tried several different ways of doing this filter based on other posts with similar issues but continue to get errors.
The error I am getting is: Expected Boolean value.
Solved! Go to Solution.
I think you'll want to put your code in the Items property of the gallery instead.
Filter(FavMix,!IsBlank(MixName))
The Visible property of the gallery makes the entire gallery Visible or Not Visible. It accepts only true or false as an argument. You are getting an error because the Filter() function returns a table.
The Items property controls what records are shown in the gallery. It accept Table values as an argument. By using the Filter() function here you are only showing rows that meet the criteria you defined.
You have the right idea, you're just using the incorrect property to try to achieve it.
---
Please click "Accept as Solution" if my response helped to solve your issue so that others may find it more quickly. If your thought the post was helpful please give it a "Thumbs Up."
I think you'll want to put your code in the Items property of the gallery instead.
Filter(FavMix,!IsBlank(MixName))
The Visible property of the gallery makes the entire gallery Visible or Not Visible. It accepts only true or false as an argument. You are getting an error because the Filter() function returns a table.
The Items property controls what records are shown in the gallery. It accept Table values as an argument. By using the Filter() function here you are only showing rows that meet the criteria you defined.
You have the right idea, you're just using the incorrect property to try to achieve it.
---
Please click "Accept as Solution" if my response helped to solve your issue so that others may find it more quickly. If your thought the post was helpful please give it a "Thumbs Up."
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
208 | |
207 | |
85 | |
57 | |
35 |
User | Count |
---|---|
333 | |
259 | |
132 | |
86 | |
60 |