Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Adding worksheets using sumproduct function gives error

Hi

I usually add together worksheets using:

= sum(start:end!a1)

which is fine but when I tried to use the sumproduct function:

=sumproduct(start:end!a1,start:end!y1)

where a1 has the gross data input and y1 has the working interest but this
gives me #ref error

I am trying to consolidate multiple worksheets which have gross data input
but I want to add the net data using the working interest in each sheet.

All the data input and working interest cells are in the same location in
each sheet.


I would appreciate any guidance to solve this problem
Many Thanks
Jolly


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Adding worksheets using sumproduct function gives error

You can't use SUMPRODUCT like that.

Just do this:

=SUM(start:end!A1)*SUM(start:end!Y1)


--
Biff
Microsoft Excel MVP


"Jolly" wrote in message
...
Hi

I usually add together worksheets using:

= sum(start:end!a1)

which is fine but when I tried to use the sumproduct function:

=sumproduct(start:end!a1,start:end!y1)

where a1 has the gross data input and y1 has the working interest but this
gives me #ref error

I am trying to consolidate multiple worksheets which have gross data input
but I want to add the net data using the working interest in each sheet.

All the data input and working interest cells are in the same location in
each sheet.


I would appreciate any guidance to solve this problem
Many Thanks
Jolly




  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Adding worksheets using sumproduct function gives error

Thank you Biff but that does not give the correct answer.

It adds the two sets first and then multiplies whereas I need each item
multiplied first and then added.

Please help.

"Jolly" wrote:

Hi

I usually add together worksheets using:

= sum(start:end!a1)

which is fine but when I tried to use the sumproduct function:

=sumproduct(start:end!a1,start:end!y1)

where a1 has the gross data input and y1 has the working interest but this
gives me #ref error

I am trying to consolidate multiple worksheets which have gross data input
but I want to add the net data using the working interest in each sheet.

All the data input and working interest cells are in the same location in
each sheet.


I would appreciate any guidance to solve this problem
Many Thanks
Jolly


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Adding worksheets using sumproduct function gives error

Oh, ok. I misunderstood.

Well, there's no easy way to do that with a single formula. It could be done
but the resulting formula would be long, complex and require you to list
your sheet names.

I would just use a formula on each sheet in the same cell like this:

Cell X1: =A1*Y1

Then you can do a simple sum like this:

=SUM(start:end!X1)

--
Biff
Microsoft Excel MVP


"Jolly" wrote in message
...
Thank you Biff but that does not give the correct answer.

It adds the two sets first and then multiplies whereas I need each item
multiplied first and then added.

Please help.

"Jolly" wrote:

Hi

I usually add together worksheets using:

= sum(start:end!a1)

which is fine but when I tried to use the sumproduct function:

=sumproduct(start:end!a1,start:end!y1)

where a1 has the gross data input and y1 has the working interest but
this
gives me #ref error

I am trying to consolidate multiple worksheets which have gross data
input
but I want to add the net data using the working interest in each sheet.

All the data input and working interest cells are in the same location in
each sheet.


I would appreciate any guidance to solve this problem
Many Thanks
Jolly




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Adding worksheets using sumproduct function gives error

Thanks T. Valko

The sheets have a lot of data from cells d10 to w300 which need to be
multplied to get the Net number.

Working out the net in the sheets would double up my data which I do not
need as I am only interested in the Net numbers on the case I am running.


"T. Valko" wrote:

Oh, ok. I misunderstood.

Well, there's no easy way to do that with a single formula. It could be done
but the resulting formula would be long, complex and require you to list
your sheet names.

I would just use a formula on each sheet in the same cell like this:

Cell X1: =A1*Y1

Then you can do a simple sum like this:

=SUM(start:end!X1)

--
Biff
Microsoft Excel MVP


"Jolly" wrote in message
...
Thank you Biff but that does not give the correct answer.

It adds the two sets first and then multiplies whereas I need each item
multiplied first and then added.

Please help.

"Jolly" wrote:

Hi

I usually add together worksheets using:

= sum(start:end!a1)

which is fine but when I tried to use the sumproduct function:

=sumproduct(start:end!a1,start:end!y1)

where a1 has the gross data input and y1 has the working interest but
this
gives me #ref error

I am trying to consolidate multiple worksheets which have gross data
input
but I want to add the net data using the working interest in each sheet.

All the data input and working interest cells are in the same location in
each sheet.


I would appreciate any guidance to solve this problem
Many Thanks
Jolly







  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Adding worksheets using sumproduct function gives error

The sheets have a lot of data from cells d10 to w300
which need to be multplied to get the Net number.


Hmmm...

That doesn't sound anything like this:

=sumproduct(start:end!a1,start:end!y1)


So, exactly what cells need to be calculated?


--
Biff
Microsoft Excel MVP


"Jolly" wrote in message
...
Thanks T. Valko

The sheets have a lot of data from cells d10 to w300 which need to be
multplied to get the Net number.

Working out the net in the sheets would double up my data which I do not
need as I am only interested in the Net numbers on the case I am running.


"T. Valko" wrote:

Oh, ok. I misunderstood.

Well, there's no easy way to do that with a single formula. It could be
done
but the resulting formula would be long, complex and require you to list
your sheet names.

I would just use a formula on each sheet in the same cell like this:

Cell X1: =A1*Y1

Then you can do a simple sum like this:

=SUM(start:end!X1)

--
Biff
Microsoft Excel MVP


"Jolly" wrote in message
...
Thank you Biff but that does not give the correct answer.

It adds the two sets first and then multiplies whereas I need each item
multiplied first and then added.

Please help.

"Jolly" wrote:

Hi

I usually add together worksheets using:

= sum(start:end!a1)

which is fine but when I tried to use the sumproduct function:

=sumproduct(start:end!a1,start:end!y1)

where a1 has the gross data input and y1 has the working interest but
this
gives me #ref error

I am trying to consolidate multiple worksheets which have gross data
input
but I want to add the net data using the working interest in each
sheet.

All the data input and working interest cells are in the same location
in
each sheet.


I would appreciate any guidance to solve this problem
Many Thanks
Jolly







  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Adding worksheets using sumproduct function gives error

Hi T

I am sorry I am not good at explaining but this is what I am trying to do:

I have

Columns A:B has dates
Columns D:m has production
Columns N:R has Expenditure
Columns S:V has Operating Costs
Column Y has the working Interest

All the above input data is in 10 to 215 where all the input data is gross.
Each sheet is a different case.

I need to add the data of the cases that are located between the START sheet
and END sheet. The added result should be the gross data inputs multiplied by
the working interest to give me a total net input data which I use to
calculate my cashflow forecast.

Hope that helps

Your help is much appreciated.

"T. Valko" wrote:

The sheets have a lot of data from cells d10 to w300
which need to be multplied to get the Net number.


Hmmm...

That doesn't sound anything like this:

=sumproduct(start:end!a1,start:end!y1)


So, exactly what cells need to be calculated?


--
Biff
Microsoft Excel MVP


"Jolly" wrote in message
...
Thanks T. Valko

The sheets have a lot of data from cells d10 to w300 which need to be
multplied to get the Net number.

Working out the net in the sheets would double up my data which I do not
need as I am only interested in the Net numbers on the case I am running.


"T. Valko" wrote:

Oh, ok. I misunderstood.

Well, there's no easy way to do that with a single formula. It could be
done
but the resulting formula would be long, complex and require you to list
your sheet names.

I would just use a formula on each sheet in the same cell like this:

Cell X1: =A1*Y1

Then you can do a simple sum like this:

=SUM(start:end!X1)

--
Biff
Microsoft Excel MVP


"Jolly" wrote in message
...
Thank you Biff but that does not give the correct answer.

It adds the two sets first and then multiplies whereas I need each item
multiplied first and then added.

Please help.

"Jolly" wrote:

Hi

I usually add together worksheets using:

= sum(start:end!a1)

which is fine but when I tried to use the sumproduct function:

=sumproduct(start:end!a1,start:end!y1)

where a1 has the gross data input and y1 has the working interest but
this
gives me #ref error

I am trying to consolidate multiple worksheets which have gross data
input
but I want to add the net data using the working interest in each
sheet.

All the data input and working interest cells are in the same location
in
each sheet.


I would appreciate any guidance to solve this problem
Many Thanks
Jolly








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Error while using SUMPRODUCT function Raj Excel Discussion (Misc queries) 3 May 8th 09 01:12 PM
sumproduct error when adding new sheet Gerry[_4_] Excel Worksheet Functions 4 January 20th 09 07:37 PM
Adding LOOKUP to an overwrought SUMPRODUCT function Wigi Excel Discussion (Misc queries) 1 July 21st 08 11:20 PM
Adding a counting function within SumProduct PBB Excel Worksheet Functions 2 June 20th 08 03:41 PM
sumproduct function returns #value or #ref error Jennie Excel Worksheet Functions 4 June 24th 05 04:19 PM


All times are GMT +1. The time now is 02:30 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"