I have two sheets, one where I had a form that lets people input safety scores a row at a time for a given construction job site and another where I'm looking to summarize all the safety scores for a particular job site overall, today, this week, etc.
I can get the overall safety score for a particular job site:
=IFERROR(AVG(COLLECT({Scores}, {Jobsite}, "HUBHAR")), "")
I can also get the overall safety score across all job sites for today with the below:
=IFERROR(AVG(COLLECT({Scores}, {Dates}, TODAY())), "")
It's when I try to just pull data for today for one specific job site that I run into problems.
I've gathered that I would want to use the COLLECT formula and I was thinking I wanted to add a second range and criteria to get the date piece of things factored in.
But when I try to combine those two above approaches, I fall flat. I'm not sure if I'm just not separating the arguments properly or mixing data types or what, but it won't work.
Any help would be greatly appreciated. I will also need to repeat for week and year, so any guidance there would also be great.
Thanks!