Filter datasource in ComboBox
Hi,
To filter the ComboBox to display only staff members with a valid staff code (more than one English letter), you need to adjust your formula to properly filter the data based on the length of the 'Staff Code'. The AddColumns function is used to add a calculated column to a table, but in this case, you want to filter the existing data. You should use the Filter function instead.
Filter(Contact, Len('Staff Code') > 1)
Thanks!
If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.