Hello all,
I'm a new PowerApps user, I'm tasked with building a proof of concept app for my organization.
I've built everything thus far buy watch YouTube videos and Google searches. My current issue is how to return the Max date or last date for each store.
background
I have a sharePoint list with a Store id called SCID and a date field with the visit date.
I want to create a 2 column collection with the SCID and the last vist date for the SCID.
.
I used the solution posted here and I just replaced fields with my info: https://powerusers.microsoft.com/t5/General-Discussion/Max-date/td-p/299657
PowerApps states invalid arguments received 2 expected 3 or more
ClearCollect(colLastVisit,
AddColumns(
GroupBy(Store_Visit,Store_Visit.Store_SCID),
"LastVisitDate", Max(Visit_Date))
)
)
What did I do wrong?
Thanks in advance