Hello!
I got this problem where I try to sort on a date/time column (Last contact) from an SP list in Powerapps and for some reason it doesnt work.
This code gives no errors but the gallery is just blank:
If('Toggle'.Value;
Filter(
Sort(
'Logg';
'Last contact';Ascending);
Agreementarea.Value in "Location1" & "Location2";
Status.Value in "Ongoing" & "Finished"
);
Filter(
Sort(
'Logg';
'Last contact';Ascending);
Agreementarea.Value in 'Filter agreementarea'.SelectedItems.Value ;
Status.Value in "Ongoing" & "Finished"
))
What i'm trying to accomplish is that you can filter with a dropdown meny called "Filter agreementarea" or toggle a button and instant get all choices in the agreementarea shown in the gallery
Solved! Go to Solution.