Greetings All!
Hoping to get some help...I have a SP List below:
Member is a Person column.
There will be multiple entries per Member (it's a walking tracker app so users will log in daily and submit their steps).
I would like to group the entires by Member and get the sum of all the "Steps" column per Member.
Thanks so much in advance 🙂
Solved! Go to Solution.
You will not be able to group on a complex column (the person column), so you will need to pull a simple column out of it to group on.
Ex:
AddColumns(
GroupBy(
AddColumns(yourDataSource,
"_member", Member.Email
),
"_member", "_records"
),
"_steps", Sum(_records, Steps)
)
I hope this is helpful for you.
You will not be able to group on a complex column (the person column), so you will need to pull a simple column out of it to group on.
Ex:
AddColumns(
GroupBy(
AddColumns(yourDataSource,
"_member", Member.Email
),
"_member", "_records"
),
"_steps", Sum(_records, Steps)
)
I hope this is helpful for you.
ah Randy...that was more than helpful, it was a life saver! Thank you so much!!
I'm sorry to trouble you as I saw you helped someone else with another issue that I am suddenly experiencing.
On Success of my Form, I perform a ForAll patch to a "child" list using LastSubmit of the form (i.e {Title:formname.LastSubmit.Title, ID=formname.LastSubmit.ID) etc.
All of a sudden, it's starting to give me error "Title:Field Title is required".
I restored a previous version and the Submit was working fine so I continued to build that up, now all of a sudden, its also doing the same thing!!
Any clue you could give me would be hugely appreciated..done the usual, save, publish, close, created a new collection, new child list in SP).
Thanks again,
marney
Ignore the above please Randy...on my Submit, I was performing a Reset and New Form; cleared that out and all is working again 🙂
Thanks again for your help mate.
User | Count |
---|---|
260 | |
110 | |
89 | |
52 | |
44 |