I'm working on a system of sheets to track requisitions within our Talent Acquisition team. I've built out a helper sheet designed to help us track the average requisition priority ranking that each recruiter has. Since this is a helper sheet, its only purpose is to gather this metric, so I don't care what the sheet looks like and can add any columns or formulas to get the info I need. I'm currently working in a Sheet Summary, but I can
The recruiter information is populated from another sheet and comes in the form of a Contact List data type. I'm trying to write a formula that takes the average priority ranking (0-5) for each row but only if it is assigned to a certain recruiter.
I'm struggling to get an IF statement to recognize the contact information as TRUE in the Sheet Summary. I've tried simple IF, nested HAS, nested FIND, and nothing seems to be working for me.
The way I think it should work, the formula would look like this:
=AVG(IF([Recruiter]@row = "NAME", [Priority Rank]:[Priority Rank])
By looking at it, I can see why it wouldn't work as I'm needing the IF statement to look at an individual row value and the AVG statement to look at a series of data within a column.
Is there a workaround to take the average but only if a certain recruiter is listed?
If it makes it easier, I'm trying to populate that data into a dashboard, so maybe there's a way to do it there?
I'll add that another idea I had was to create a helper helper sheet that used a conditional automation to copy the priority ranking to another sheet for the specific recruiter and the just doing an easy AVG formula in that sheet. That would work, but it feels like a lot to make a whole separate sheet for each recruiter just to isolate the priority number.