We have kPIs and KPI responses
When a user responds to a KPI its logged into the KPI responses table
I want to filter the gallery so the user only sees the KPI's they have not responded to yet

With(
{
_InProgress:
Filter(
KPI_HSList_responses,
Office = useroffice,
RatingPeriod = curq
),
_HSList: KPI_HSList
},
ClearCollect(
colhas,
Filter(
_HSList,
!(ID in _InProgress.ID)
)
)
)