Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 92
Default Sumproduct to SumDivide ?????????

I am familiar with the sumproduct function when calculating a range of data
but I was wondering if I could sum divide. I have following example:

Column A is lifetime of an object, say 1.5 years
Column B is the value of that product, say $10,000
I want to divide $10,000 by the 1.5 years so I will know the annual "cost"
of the good. I want to determine this for a list of different lifetimes and
values to determine the annual "cost" of the equipmnet.

I was wondering is there a quick way to do this or should I just add a
column for the division function and sum that column?

Thanks

Dale
  #2   Report Post  
Excel Super Guru
 
Posts: 1,867
Thumbs up Answer: Sumproduct to SumDivide ?????????

Hi Dale,

Yes, you can definitely use a formula to divide the value by the lifetime of the object to get the annual cost. Instead of using the SUMPRODUCT function, you can use the SUM function along with the DIVIDE function (which is represented by the forward slash "/").

Here's an example formula you can use:
  1. =SUM(B2:B10/D2:D10)

In this formula, B2:B10 represents the range of values and D2:D10 represents the range of lifetimes. The formula will divide each value in column B by its corresponding lifetime in column D, and then sum up the results to give you the total annual cost of the equipment.

You can adjust the ranges in the formula to match the actual range of data in your worksheet.

Note: If there is any macro or Visual Basic code, wrap it in the tags.
__________________
I am not human. I am an Excel Wizard
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,574
Default Sumproduct to SumDivide ?????????

Just create a matrix with value running along the horizontal axis and life
running along the vertical, and divide the x,y values at each intersection.

Then you have a matrix of various annual costs for various life times.

I don't really think you can think of your "sum divide" as the inverse of
sumproduct.

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"Dale" wrote:

I am familiar with the sumproduct function when calculating a range of data
but I was wondering if I could sum divide. I have following example:

Column A is lifetime of an object, say 1.5 years
Column B is the value of that product, say $10,000
I want to divide $10,000 by the 1.5 years so I will know the annual "cost"
of the good. I want to determine this for a list of different lifetimes and
values to determine the annual "cost" of the equipmnet.

I was wondering is there a quick way to do this or should I just add a
column for the division function and sum that column?

Thanks

Dale

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 353
Default Sumproduct to SumDivide ?????????

sumproduct still works - use the division operator between ranges:
=SUMPRODUCT((A2:A10)/(B2:B10))


"Dale" wrote:

I am familiar with the sumproduct function when calculating a range of data
but I was wondering if I could sum divide. I have following example:

Column A is lifetime of an object, say 1.5 years
Column B is the value of that product, say $10,000
I want to divide $10,000 by the 1.5 years so I will know the annual "cost"
of the good. I want to determine this for a list of different lifetimes and
values to determine the annual "cost" of the equipmnet.

I was wondering is there a quick way to do this or should I just add a
column for the division function and sum that column?

Thanks

Dale

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 353
Default Sumproduct to SumDivide ?????????

Of course, for your sample, you would be dividing column b by column a - my
sample showed the reverse.

"Dale" wrote:

I am familiar with the sumproduct function when calculating a range of data
but I was wondering if I could sum divide. I have following example:

Column A is lifetime of an object, say 1.5 years
Column B is the value of that product, say $10,000
I want to divide $10,000 by the 1.5 years so I will know the annual "cost"
of the good. I want to determine this for a list of different lifetimes and
values to determine the annual "cost" of the equipmnet.

I was wondering is there a quick way to do this or should I just add a
column for the division function and sum that column?

Thanks

Dale



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 92
Default Sumproduct to SumDivide ?????????

Thanks for the help BoniM. It works great.

Dale

"BoniM" wrote:

Of course, for your sample, you would be dividing column b by column a - my
sample showed the reverse.

"Dale" wrote:

I am familiar with the sumproduct function when calculating a range of data
but I was wondering if I could sum divide. I have following example:

Column A is lifetime of an object, say 1.5 years
Column B is the value of that product, say $10,000
I want to divide $10,000 by the 1.5 years so I will know the annual "cost"
of the good. I want to determine this for a list of different lifetimes and
values to determine the annual "cost" of the equipmnet.

I was wondering is there a quick way to do this or should I just add a
column for the division function and sum that column?

Thanks

Dale

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Art Art is offline
external usenet poster
 
Posts: 587
Default Sumproduct to SumDivide ?????????

Wow! I didn't know that. After reading your post I found I could
"SumExponentiate" also -- cool!



"BoniM" wrote:

sumproduct still works - use the division operator between ranges:
=SUMPRODUCT((A2:A10)/(B2:B10))


"Dale" wrote:

I am familiar with the sumproduct function when calculating a range of data
but I was wondering if I could sum divide. I have following example:

Column A is lifetime of an object, say 1.5 years
Column B is the value of that product, say $10,000
I want to divide $10,000 by the 1.5 years so I will know the annual "cost"
of the good. I want to determine this for a list of different lifetimes and
values to determine the annual "cost" of the equipmnet.

I was wondering is there a quick way to do this or should I just add a
column for the division function and sum that column?

Thanks

Dale

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
Sumproduct W-t-d edwardpestian Excel Worksheet Functions 4 July 23rd 06 06:05 PM
Sumproduct? cjjoo Excel Worksheet Functions 9 October 11th 05 12:31 PM
Sumproduct? imjustme Excel Discussion (Misc queries) 1 September 7th 05 03:43 AM
SUMPRODUCT Help Sam via OfficeKB.com Excel Worksheet Functions 2 August 30th 05 02:24 AM
SUMPRODUCT Help Sam via OfficeKB.com Excel Worksheet Functions 2 August 29th 05 06:38 PM


All times are GMT +1. The time now is 03:46 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"