Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I have two columns (e.g. a1:a100 and b1:b100) filled numeric values and i need the sumproduct of the two columns of data, considering that it will only read or sum the each result up to 2 decimal places only ....
can anyone help me out with this with a single formula. e.g. [col A] [col B] [rounded product A*B] [$ 1.233 ] [ 33.222 ] [ $ 40.96 ] [$ 0.245 ] [ 11.111 ] [ $ 2.72 ] [$ 0.122 ] [ -3.215 ] [ $ -0.39 ] from the above sample the sum of the product (2 decimals) = $43.29 can anyone help me out with this using a single formula for my quick presentation. any of your suggestion is requested. thanks romelsb 4pinoy :) on banter |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It depends on what you actually want. Try these based on your example and
note the difference: =ROUND(SUMPRODUCT(A1:A3,B1:B3),2) =SUMPRODUCT(ROUND(A1:A3,2),ROUND(B1:B3,2)) =ROUND(SUMPRODUCT(ROUND(A1:A3,2),ROUND(B1:B3,2)),2 ) The first formula returns the result you posted. Biff "driller2" wrote in message ... I have two columns (e.g. a1:a100 and b1:b100) filled numeric values and i need the sumproduct of the two columns of data, considering that it will only read or sum the each result up to 2 decimal places only .... can anyone help me out with this with a single formula. e.g. [col A] [col B] [rounded product A*B] [$ 1.233 ] [ 33.222 ] [ $ 40.96 ] [$ 0.245 ] [ 11.111 ] [ $ 2.72 ] [$ 0.122 ] [ -3.215 ] [ $ -0.39 ] from the above sample the sum of the product (2 decimals) = $43.29 can anyone help me out with this using a single formula for my quick presentation. any of your suggestion is requested. thanks romelsb 4pinoy :) on banter -- driller2 |
#3
![]() |
|||
|
|||
![]()
Still unknown, thanks for your suggestion T.Valko,
From below new sample (e.g) i had tried the three(3) suggested formula. [col A] [col B] [rounded product A*B] [$ 1.233 ] [ 33.22 ] [ $ 40.96 ] [$ 0.245 ] [ 11.21 ] [ $ 2.75 ] [$ 0.122 ] [ -3.215 ] [ $ -0.39 ] from the above sample the sum of the product (2 decimals) = $43.32 (in thousands...) =ROUND(SUMPRODUCT(A1:A3,B1:B3),2) result is [$43.31 < $43.32] =SUMPRODUCT(ROUND(A1:A3,2),ROUND(B1:B3,2)) result is [$43.2767 < $43.32] =ROUND(SUMPRODUCT(ROUND(A1:A3,2),ROUND(B1:B3,2)),2 ) result is [$43.28 < $43.32] ___ since last week, this is still a mystery for me where to find a single formula to do this job, perfectly. I do tried Roundup and Roundown, even, but the perfect result varies as the data changes ___ Hope anyone else can give a single sumproduct formula or other evolved formula. happy holidays hohoho...:) romelsb 4pinoy :) on banter [quote=T. Valko]It depends on what you actually want. Try these based on your example and note the difference: =ROUND(SUMPRODUCT(A1:A3,B1:B3),2) =SUMPRODUCT(ROUND(A1:A3,2),ROUND(B1:B3,2)) =ROUND(SUMPRODUCT(ROUND(A1:A3,2),ROUND(B1:B3,2)),2 ) The first formula returns the result you posted. Biff |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding "OR" to a Sumproduct Formula | Excel Worksheet Functions | |||
Need help with sumproduct & dynamic ranges | Excel Worksheet Functions | |||
sumproduct causing memory errors? | Excel Worksheet Functions | |||
Sumproduct function not working | Excel Worksheet Functions | |||
adding two sumproduct formulas together | Excel Worksheet Functions |