hi xpert i am trying to create a gallery where i have a role
1. super user/Admin
2. user or the user team who created a record
now am trying to insert a filter which is supposed to work on a filter but the filter is only working when i select the drop down. the dropdown are not being linked. neither the sorting ....
If(
ComboBox1_1.Selected.Value = "All" || Dropdown4.Selected.Value = "All",
Filter(
Records,
(IsActive = true && 'Created By'.'Primary Email' = User().Email && 'Organizational Id' = ComboBox1_3.Selected.Value) ||
(IsActive = true && 'Organizational Id' = Dropdown5_1.Selected.Value && 'Status (crbb3_Status)'.Value = ComboBox1_2.Selected.Value && 'Organizational Id' = ComboBox1_3.Selected.Value)
),
If(
// User Management Access: Disable access to user role
Not(IsBlank(LookUp('User Managements', Email = User().Email && Role = 1))),
Filter(
Records,
(IsActive = true && Location = ComboBox1_1.Selected.Value && 'Status (crbb3_Status)'.Value = Dropdown4.Selected.Value && 'Created By'.'Primary Email' = User().Email && 'Organizational Id' = ComboBox1_3.Selected.Value) ||
(IsActive = true && Location = ComboBox1_1.Selected.Value && 'Organizational Id' = Dropdown5_1.Selected.Value && 'Status (crbb3_Status)'.Value = ComboBox1_2.Selected.Value && 'Organizational Id' = ComboBox1_3.Selected.Value && 'Status (crbb3_Status)'.Value = Dropdown4.Selected.Value)
),
Filter(
Records,
(IsActive = true && 'Start Date' <= Today() && 'Status (crbb3_Status)'.Value = Dropdown4.Selected.Value && Location = ComboBox1_1.Selected.Value && 'Status (crbb3_Status)'.Value = Dropdown4.Selected.Value && 'Organizational Id' = ComboBox1_3.Selected.Value && 'Status (crbb3_Status)'.Value = Dropdown4.Selected.Value)
)
)
)
