Holiday Pay

J

johnrann

How do I set up a spreadsheet to get an average of the last 12 weeks
pay. This is obviously a rolling figure changing from week to week.
 
B

Barb Reinhardt

I assume you have observations for each week of pay. Use the SUMIF
function. I don't have time to find other links for you. I'm sure someone
else can.
 
B

Bob Phillips

Assuming the data is in A1:A100, use

=SUMPRODUCT(--(LARGE(A1:A100,ROW(INDIRECT("1:12")))))
 
S

Sandy Mann

John,

To get the average - rather than the SUM - then with your data starting in
A1, in row 12, (any column), try:

=SUM(OFFSET(A1,0,0,12,1))/12

and copy down the column

--
HTH

Sandy
(e-mail address removed)
Replace@mailinator with @tiscali.co.uk
 
S

Sandy Mann

=SUM(OFFSET(A1,0,0,12,1))/12

or simply:

=AVERAGE(OFFSET(A1,0,0,12,1))

--
HTH

Sandy
(e-mail address removed)
Replace@mailinator with @tiscali.co.uk
Sandy Mann said:
John,

To get the average - rather than the SUM - then with your data starting in
A1, in row 12, (any column), try:

=SUM(OFFSET(A1,0,0,12,1))/12

and copy down the column

--
HTH

Sandy
(e-mail address removed)
Replace@mailinator with @tiscali.co.uk


message news:[email protected]...
 

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