A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

SUMPRODUCT



 
 
Thread Tools Display Modes
  #1  
Old April 14th, 2009, 04:08 AM posted to microsoft.public.excel.worksheet.functions
M&M[_3_]
external usenet poster
 
Posts: 5
Default SUMPRODUCT

The Min column is the calculation of MIN(ABS(A1:C1)) by row. Now I need to
have a count by each column that the value is equal to the Min column. I
tried to use the sumproduct as below but it doesn't work:

=sumproduct(--(A1:A9"?"),ABS(A1:A9)=(D19))

My data is randomly to have "?"; therefore I need to make sure the formula
do not count the "?" and also treat all valuse as "ABS". The results should
be 3 in col A, 4 in col B, and 5 in col C.

Any hlep is greatly appreciated?

A B C MIN
1 -14% -14% -11% 11%
2 -12% -9% 9% 9%
3 -16% -16% -19% 16%
4 -13% -12% 12% 12%
5 -16% -17% -16% 16%
6 -16% -14% -10% 10%
7 ? ? ? ?
8 -17% -17% -18% 17%
9 -19% -17% -18% 17%


  #2  
Old April 14th, 2009, 04:39 AM posted to microsoft.public.excel.worksheet.functions
T. Valko
external usenet poster
 
Posts: 15,759
Default SUMPRODUCT

The results should be 3 in col A, 4 in col B, and 5 in col C.

I think the correct results should be: 3,5,5

Try this array formula** :

=SUM(IF(ISNUMBER(A1:A9),--(ABS(A1:A9)=$D1:$D9)))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

Copy across as needed.

--
Biff
Microsoft Excel MVP


"M&M" Missie.lucky.com wrote in message
...
The Min column is the calculation of MIN(ABS(A1:C1)) by row. Now I need
to
have a count by each column that the value is equal to the Min column. I
tried to use the sumproduct as below but it doesn't work:

=sumproduct(--(A1:A9"?"),ABS(A1:A9)=(D19))

My data is randomly to have "?"; therefore I need to make sure the formula
do not count the "?" and also treat all valuse as "ABS". The results
should
be 3 in col A, 4 in col B, and 5 in col C.

Any hlep is greatly appreciated?

A B C MIN
1 -14% -14% -11% 11%
2 -12% -9% 9% 9%
3 -16% -16% -19% 16%
4 -13% -12% 12% 12%
5 -16% -17% -16% 16%
6 -16% -14% -10% 10%
7 ? ? ? ?
8 -17% -17% -18% 17%
9 -19% -17% -18% 17%




  #3  
Old April 14th, 2009, 05:10 AM posted to microsoft.public.excel.worksheet.functions
M&M[_3_]
external usenet poster
 
Posts: 5
Default SUMPRODUCT

Thank you so much, it works!!!
--
M&M


"T. Valko" wrote:

The results should be 3 in col A, 4 in col B, and 5 in col C.


I think the correct results should be: 3,5,5

Try this array formula** :

=SUM(IF(ISNUMBER(A1:A9),--(ABS(A1:A9)=$D1:$D9)))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

Copy across as needed.

--
Biff
Microsoft Excel MVP


"M&M" Missie.lucky.com wrote in message
...
The Min column is the calculation of MIN(ABS(A1:C1)) by row. Now I need
to
have a count by each column that the value is equal to the Min column. I
tried to use the sumproduct as below but it doesn't work:

=sumproduct(--(A1:A9"?"),ABS(A1:A9)=(D19))

My data is randomly to have "?"; therefore I need to make sure the formula
do not count the "?" and also treat all valuse as "ABS". The results
should
be 3 in col A, 4 in col B, and 5 in col C.

Any hlep is greatly appreciated?

A B C MIN
1 -14% -14% -11% 11%
2 -12% -9% 9% 9%
3 -16% -16% -19% 16%
4 -13% -12% 12% 12%
5 -16% -17% -16% 16%
6 -16% -14% -10% 10%
7 ? ? ? ?
8 -17% -17% -18% 17%
9 -19% -17% -18% 17%





  #4  
Old April 14th, 2009, 06:31 AM posted to microsoft.public.excel.worksheet.functions
T. Valko
external usenet poster
 
Posts: 15,759
Default SUMPRODUCT

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"M&M" Missie.lucky.com wrote in message
...
Thank you so much, it works!!!
--
M&M


"T. Valko" wrote:

The results should be 3 in col A, 4 in col B, and 5 in col C.


I think the correct results should be: 3,5,5

Try this array formula** :

=SUM(IF(ISNUMBER(A1:A9),--(ABS(A1:A9)=$D1:$D9)))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the
SHIFT
key then hit ENTER.

Copy across as needed.

--
Biff
Microsoft Excel MVP


"M&M" Missie.lucky.com wrote in message
...
The Min column is the calculation of MIN(ABS(A1:C1)) by row. Now I
need
to
have a count by each column that the value is equal to the Min column.
I
tried to use the sumproduct as below but it doesn't work:

=sumproduct(--(A1:A9"?"),ABS(A1:A9)=(D19))

My data is randomly to have "?"; therefore I need to make sure the
formula
do not count the "?" and also treat all valuse as "ABS". The results
should
be 3 in col A, 4 in col B, and 5 in col C.

Any hlep is greatly appreciated?

A B C MIN
1 -14% -14% -11% 11%
2 -12% -9% 9% 9%
3 -16% -16% -19% 16%
4 -13% -12% 12% 12%
5 -16% -17% -16% 16%
6 -16% -14% -10% 10%
7 ? ? ? ?
8 -17% -17% -18% 17%
9 -19% -17% -18% 17%







 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 03:30 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.