Hi there so I have come across a possible bug
I am setting a dropdown items based on a variable like below, and in some cases the first row is missing from the filter
If(RoleType = "Support Staff" Or RoleType = "XY Services",Filter('[dbo].[PayScale]',Type = "Support"),RoleType = "YYStaff",Filter('[dbo].[PayScale]',!IsMatch(Type,"Support")))
I can replicate this 100x by submitting a form when it is either a Support staff or an XY staff and then submitting a form with a YY staff. The missing row is only ever for a YY staff and I can submit loads of YY staff without issue, but as soon as I submit a form as another staff type then the next form will be missing the first row
P.S as to why I'm querying the DB each time I originally had a collection and filtered that and had the same issue, was trying something else to see if it would work