More Median Questions

K

KevinAGrogan

I have two different jobs, and I track data on two different
worksheets for the jobs. I am interested in finding out the median
revenue earned for both jobs in each year (combined). I was able to
find the median for each type of job, now I need to know the revenue
for all jobs in each year. How would I set up an equation to do
that? I have the following data on each worksheet (in same workbook):

Columns:
A: Customer Name
B: Customer Number
C: Date Job was Submitted
D: Date Job was Returned
E: Turnaround Time
F: Associate who Completed the Job
G: Revenue from Job


Thanks in advance for your help,


Kevin
 
G

Guest

=SUMPRODUCT(--(YEAR(Sheet1!C2:C1000)=X1),Sheet1!G2:G1000)+SUMPRODUCT(--(YEAR(Sheet2!C2:C1000)=X1),Sheet2!G2:G1000)

X1=2007 (year required)

Assumes "Date Job Submitted"
 
K

KevinAGrogan

=SUMPRODUCT(--(YEAR(Sheet1!C2:C1000)=X1),Sheet1!G2:G1000)+SUMPRODUCT(--(YEAR(Sheet2!C2:C1000)=X1),Sheet2!G2:G1000)

X1=2007 (year required)

Assumes "Date Job Submitted"


Will this give me the median?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top