Hi all,
I use Sharepoint List as my data source of power apps, and one of the columns is Notificiation_Email. Everything worked fine when this column was single selection, but when I switched the Settings to allow multiple selections, a lot of errors appeared.
For the Combox_user items:
Distinct(
'ITGC Setting',
'Notification Email'.Email = User().Email
)
For the gallery Items:
SortByColumns(
Filter('Setting',
(IsBlank(ComboBox_user.Selected.Value)||'Notification Email'.Email = ComboBox_user.Selected.Value)
),
"ID",SortOrder.Descending)
For the Notification_Email text in gallery:
ThisItem.'Notification Email'.DisplayName
I guess the problem is that the record turns into the table, but I dont know how to solve them. Can anyone help me? Thanks