PC Review


Reply
Thread Tools Rate Thread

How to do the calculation - 29 Nov?

 
 
Eric
Guest
Posts: n/a
 
      29th Nov 2008
Does anyone have any suggestions on how to do the calculation?
There is a list of raw data under column A
50, 52, 53, 53, 55, 56
There is a list of numbers under column B
3%, 9%, 5%, 4%, 8%, 8%

I would like to create a matrix to count the frequency
On X-axis, 50, 51, 52, 53, 54, 55, 56
On Y-axis, 0%, 1%, 2%, 3%, 4%, 5%, 6%, 7%, 8%, 9%

Does anyone have any suggestions on how to set the formula to determine the
frequency? For example, 4% & 5& will count 1 for each for the number 53.
Thanks in advance for any suggestions
Eric

 
Reply With Quote
 
 
 
 
Lars-Åke Aspelin
Guest
Posts: n/a
 
      29th Nov 2008
On Sat, 29 Nov 2008 02:18:00 -0800, Eric
<(E-Mail Removed)> wrote:

>Does anyone have any suggestions on how to do the calculation?
>There is a list of raw data under column A
>50, 52, 53, 53, 55, 56
>There is a list of numbers under column B
>3%, 9%, 5%, 4%, 8%, 8%
>
>I would like to create a matrix to count the frequency
>On X-axis, 50, 51, 52, 53, 54, 55, 56
>On Y-axis, 0%, 1%, 2%, 3%, 4%, 5%, 6%, 7%, 8%, 9%
>
>Does anyone have any suggestions on how to set the formula to determine the
>frequency? For example, 4% & 5& will count 1 for each for the number 53.
>Thanks in advance for any suggestions
>Eric



Assuming that your "X-axis" is on row 1, from column D to J
and your "Y-axis" is in column C, from row 2 row 11
you cab try the following formula in cell D2

=SUMPRODUCT(($A$1:$A$6=D$1)*($B$1:$B$6=$C2))

Change the 6 to fi the size of your data in column A and B.

Copy the forumula to the entire range D2 to J11 and you matrix is
ready.

Hope this helps / Lars-Åke

 
Reply With Quote
 
Gary''s Student
Guest
Posts: n/a
 
      29th Nov 2008
Consider using a Pivot Table. It can give you a list of unique values that
the frequency of occurance:

In A1 thru B31:

raw value
60 8%
58 4%
54 4%
53 6%
60 8%
55 4%
60 1%
57 6%
58 5%
58 9%
53 7%
60 7%
54 2%
59 5%
60 7%
50 2%
52 9%
57 9%
58 2%
56 10%
54 3%
59 1%
60 1%
56 8%
57 8%
52 5%
53 10%
53 5%
51 6%
57 3%


The Table is:Count of value value
raw 1% 10% 2% 3% 4% 5% 6% 7% 8% 9% Grand Total
50 1 1
51 1 1
52 1 1 2
53 1 1 1 1 4
54 1 1 1 3
55 1 1
56 1 1 2
57 1 1 1 1 4
58 1 1 1 1 4
59 1 1 2
60 2 2 2 6
Grand Total 3 2 3 2 3 4 3 3 4 3 30

--
Gary''s Student - gsnu200816


"Eric" wrote:

> Does anyone have any suggestions on how to do the calculation?
> There is a list of raw data under column A
> 50, 52, 53, 53, 55, 56
> There is a list of numbers under column B
> 3%, 9%, 5%, 4%, 8%, 8%
>
> I would like to create a matrix to count the frequency
> On X-axis, 50, 51, 52, 53, 54, 55, 56
> On Y-axis, 0%, 1%, 2%, 3%, 4%, 5%, 6%, 7%, 8%, 9%
>
> Does anyone have any suggestions on how to set the formula to determine the
> frequency? For example, 4% & 5& will count 1 for each for the number 53.
> Thanks in advance for any suggestions
> Eric
>

 
Reply With Quote
 
Shane Devenshire
Guest
Posts: n/a
 
      29th Nov 2008
Hi,

Set up your matrix like this where 50 is in D1 and 1% is in C2, then the
formula in D2 is
=COUNTIFS($A$1:$A$6,D$1,$B$1:$B$6,$C2) (in 2007)
or
=SUMPRODUCT(--($A$1:$A$6=D$1),--($B$1:$B$6=$C2)) (in 2003)

50 51 52 ....
1% 0 0 0
2% 0 0 0
3% 1 0 0
4% 0 0 0
....

If this helps, please click the Yes button

Cheers,
Shane Devensire

"Eric" wrote:

> Does anyone have any suggestions on how to do the calculation?
> There is a list of raw data under column A
> 50, 52, 53, 53, 55, 56
> There is a list of numbers under column B
> 3%, 9%, 5%, 4%, 8%, 8%
>
> I would like to create a matrix to count the frequency
> On X-axis, 50, 51, 52, 53, 54, 55, 56
> On Y-axis, 0%, 1%, 2%, 3%, 4%, 5%, 6%, 7%, 8%, 9%
>
> Does anyone have any suggestions on how to set the formula to determine the
> frequency? For example, 4% & 5& will count 1 for each for the number 53.
> Thanks in advance for any suggestions
> Eric
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I use a rounded calculation result in another calculation? =?Utf-8?B?dm5zcm9kMjAwMA==?= Microsoft Excel Worksheet Functions 1 26th Jan 2005 10:11 PM
How do I use a rounded calculation result in another calculation? =?Utf-8?B?dm5zcm9kMjAwMA==?= Microsoft Excel Worksheet Functions 1 26th Jan 2005 09:36 PM
Concatenating a Calculation with Text causes the Calculation to be incorrect?? Nelson Microsoft Excel Worksheet Functions 4 1st Apr 2004 06:51 PM
Calculation based on another calculation T Smith Microsoft Access Forms 3 8th Jan 2004 12:04 AM
range.calculation with UDF not working when calculation is set to automatic Brian Murphy Microsoft Excel Programming 5 14th Oct 2003 07:02 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:16 AM.