Hey,
Am using DataVerse with PowerApps. I have a table called "TerritoriesSaps", and applying a two filters, here is the code:
With(
{
Pre_filter_Brand: Filter(
TerritoriesSaps,
"SEPHORA" = AccountName
)
},
Filter(
Pre_filter_Brand,
"IDC" in Brand,
DoorName
)
)
it only retrieve 38, but their more over 200.
The first filter retrieve 7212, then re-filter but only 38,
what am i doing wrong??