Hello,
i have a sharepoint list with parcels that receivers should mark as received by using a link in an email. Of course not everybody does. So in a powerapp i have a datatable which is filtered to all parcels older than 30 days and not marked as received:
Sort(Filter(Paketeingangsliste;Erstellt < DateAdd(Today();-30);IsBlank(Abholer)=true);ID;Descending)
I would like to a have a button that marks all entries as received by clicking on it. That means to write a certain user (i.e. Müller Hans) in column "Abholer" which is of type person/contact for all entries in the datatable.
I think it's possible to do that with the ForAll-Function but i am not sure how.
Can you help me?
Thank you.