Average help!

JGARDNER-AIT

Board Regular
Joined
May 15, 2007
Messages
149
Hello - I'm trying to average a users project turn times once it completed.
I have a spreedsheet of data indicating multiple users names in column "L".
The code "Complete" in column "C". Thier turn time is in column "AS" by project.

How can I get one average number for everythiung they have completed into one cell?

Thank you,
Josh
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
=AVERAGE(IF(C1:C1000="Complete",AS1:AS1000))

Confirm with CTRL-SHIFT-ENTER rather than just Enter.

If you need it for a specific name, then:

=AVERAGE(IF(L1:L1000="Joe",IF(C1:C1000="Complete",AS1:AS1000)))

Confirm with CTRL-SHIFT-ENTER rather than just Enter.
 
Upvote 0
I'm getting #NUM!. Is it because in column "AS" its formulas and theres text and numbers?

Heres an example formula:
IF(C4147="","NOT STARTED",IF(C4147="HOLD","HOLD",IF(C4147="PENDING","PENDING",IF(C4147="OFQ","OFQ",IF(C4147="REVIEW","REVIEW",IF(C4147="CLOSED","CLOSED",IF(AND(C4147="COMPLETE",K4147=""),NETWORKDAYS(M4147,W4147)-AT4147,NETWORKDAYS(M4147,W4147)-AT4147)))))))






=AVERAGE(IF(C1:C1000="Complete",AS1:AS1000))

Confirm with CTRL-SHIFT-ENTER rather than just Enter.

If you need it for a specific name, then:

=AVERAGE(IF(L1:L1000="Joe",IF(C1:C1000="Complete",AS1:AS1000)))

Confirm with CTRL-SHIFT-ENTER rather than just Enter.
 
Upvote 0
You asked for an average, where are the numbers you want to average?

BTW, the first part of that formula could be greatly simplified.
 
Upvote 0
=AVERAGE(IF(L1:L1000="Joe",IF(C1:C1000="Complete",IF(ISNUMBER(AS1:AS1000),AS1:AS1000))))

Confirm with CTRL-SHIFT-ENTER rather than just Enter
 
Upvote 0

Forum statistics

Threads
1,224,541
Messages
6,179,418
Members
452,912
Latest member
alicemil

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top