Hello to the community,
I need to get the max value from a SharePoint list.
From the form, a drop-down list provides the items to select. The selected item result should be MAX() lookup value from a specific column.
I have tried multiple variations of filters, lookups and sort without success. Any assistance will be appreciated.
First('SPList').column - produces perfectly the value but without the lookup reference.
I believe that I have to filter on the drop-down list selected item and search for my last entry on that column. However, I'm embarrass to say that I can't seem to get the syntax correct.
This produces an invalid argument type-
First(SortByColumns(Filter('SPList', List=Dropdown1.Selected.Value), Column1, Descending)).Column1
Thanks.