Formula for avg labor rates
Hello!
I am trying to get an overall average of the amount of labor hours it takes to install equipment per quantity installed.
Here is a screenshot of the following columns I am trying to gather the average from.
I want to get the average labor hours per qty installed per equipment. In this case it would be the average of two with two different quantities. But I would like a formula that I could replicate for other equipment type.
Please help! Thank you!
Answers
-
You're going to want to use an AVERAGEIF and possibly even a SUMIF or SUMIFS. You can see how to set them up here:
You can even thread the SUMIF(S) into an AVG function by placing the SUMIF(S) into the number1 and number2 positions of the AVG function:
-
Can you give me an example of what the formula would look like please?
-
What I would do in this instance is add a new column to the sheet, a helper column that can identify the number of hours per quantity.
It would be a simple column formula:
=[Feeder Raceways: QTY Installed]@row / [Feeder Raceways: Labor Hours]@row
Since you have quite a few blank rows, I would also add in an IF statement that checks to see if the hours are blank, and if they are, return a blank cell (so you don't get an error):
=IF([Feeder Raceways: Labor Hours]@row = "", "", [Feeder Raceways: QTY Installed]@row / [Feeder Raceways: Labor Hours]@row)
Then you can use AVERAGEIF on this new helper column as Mike mentioned!
=AVERAGEIF([Feeder Raceways: Raceway Type]:[Feeder Raceways: Raceway Type], "Raceway Type to Search", [Helper Column]:[Helper Column])
Does that make sense?
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!