This follows on from a previous post:
https://powerusers.microsoft.com/t5/Building-Power-Apps/Reset-Gallery-to-show-all-data-remove-filter/m-p/454562#M135620
The users want an additional method of only showing items in the gallery where a field is blank (therefore the need to carry out work on it). There are two teams that have this requirement. I was going to add another dropdown, so if either of the two names was selected it filters on the associated field being blank.
Previous code was:
Filter('SharePointList', If(Drop_Stage.Selected.Value = "All", true,Stage.Value=Drop_Stage.Selected.Value), If(Drop_TeamAssign.Selected.Value = "All", true, 'Team assignment'.Value= Drop_TeamAssign.Selected.Value))
I've tried adding another "If" at the end, but have zero effect.
If(Drop_3.Selected.Value="Records", IsBlank('Review – Records'.Value, true)
Any suggestions appreciated.