Hello, I am unable to apply the filter function in a canvas Power apps based on dataverse.
The table name is EssaiNew, in this table there is a column named Status. This column is of multiple choice type, it has these values ​​(In progress, Approved, Renewed).
I would like to display data from the EssayNew table based on the values ​​in the Status column.
Here is the function I wrote in the Items property of a Gallery, none works:
1 - Filter(EssaiNews; Status="In progress")
2 - Filter(EssaiNews; 'Status (EssaiNews)'= "In progress")
3- Filter(EssaiNews; 'Status (EssaiNews)'.'In progress'="In progress")
HI De Yves,
I have an idea if you interest try this one.
Create a one text field(TextInput) and button. Select the Button control (Find) and apply this below formula on its OnSelect property as:
OnSelect = ClearCollect(
EssaiNews,
Filter(
'Listname',
status = Value(TextInput.Text)
)
);
OR
try this only in your field
Filter(
'Listname',
status = Value(TextInput.Text)
);
Thanks,
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 290,524 Super User 2024 Season 2
Martin Dráb 228,469 Most Valuable Professional
nmaenpaa 101,148