Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
LMB
 
Posts: n/a
Default Need Percent of Records

Excel 2000. This may be too complicated but everything else I have asked in
here has been answered and works great. I have a column of numbers (column
8). These numbers are the result of the count function. I have 70 records.
Some of the counts are 0, some 1, 2, 3, 4, 5, 6. I want to report the % of
each of these numbers.

Example: If I have 10 records and 5 of thenumbers are = to 6 then the
answer will be 50%. I would like to report the % of each number when
compared to the total number of records.

Thanks,
Linda


  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

=B1/70

copy down (this assumes the first number is in B1) Then format as percentage

--
Regards,

Peo Sjoblom


"LMB" wrote in message
...
Excel 2000. This may be too complicated but everything else I have asked
in here has been answered and works great. I have a column of numbers
(column 8). These numbers are the result of the count function. I have
70 records. Some of the counts are 0, some 1, 2, 3, 4, 5, 6. I want to
report the % of each of these numbers.

Example: If I have 10 records and 5 of thenumbers are = to 6 then the
answer will be 50%. I would like to report the % of each number when
compared to the total number of records.

Thanks,
Linda


  #3   Report Post  
LMB
 
Posts: n/a
Default

That did give me a % for each record but I want a summary of the total
number....

Here is what the sheet looks like

11222 5
111 3
1 1
111111 6
121222 6
111111 6

the 1s and 2s represent charting audits 1=yes and 2=no

The 5,3, 1 is the number of charting audits done. The max number to be done
is 6. I need to report the % of employees who had 6 done, 5 done, and so
on. Then next quarter we will hopefully show an improvement and 100% of the
employees will have had 6 charting audits done.

Thanks,
Linda








"Peo Sjoblom" wrote in message
...
=B1/70

copy down (this assumes the first number is in B1) Then format as
percentage

--
Regards,

Peo Sjoblom


"LMB" wrote in message
...
Excel 2000. This may be too complicated but everything else I have asked
in here has been answered and works great. I have a column of numbers
(column 8). These numbers are the result of the count function. I have
70 records. Some of the counts are 0, some 1, 2, 3, 4, 5, 6. I want to
report the % of each of these numbers.

Example: If I have 10 records and 5 of thenumbers are = to 6 then the
answer will be 50%. I would like to report the % of each number when
compared to the total number of records.

Thanks,
Linda




  #4   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

=Cell_with_5/6

and so on

Assume that your numbers (that would be the 5 and 3 and 1 etc) in your
example starts in B2, now in for instance C2 put

=B2/6

since 6 is the 100% it can be hard coded



Regards,

Peo Sjoblom




"LMB" wrote:

That did give me a % for each record but I want a summary of the total
number....

Here is what the sheet looks like

11222 5
111 3
1 1
111111 6
121222 6
111111 6

the 1s and 2s represent charting audits 1=yes and 2=no

The 5,3, 1 is the number of charting audits done. The max number to be done
is 6. I need to report the % of employees who had 6 done, 5 done, and so
on. Then next quarter we will hopefully show an improvement and 100% of the
employees will have had 6 charting audits done.

Thanks,
Linda








"Peo Sjoblom" wrote in message
...
=B1/70

copy down (this assumes the first number is in B1) Then format as
percentage

--
Regards,

Peo Sjoblom


"LMB" wrote in message
...
Excel 2000. This may be too complicated but everything else I have asked
in here has been answered and works great. I have a column of numbers
(column 8). These numbers are the result of the count function. I have
70 records. Some of the counts are 0, some 1, 2, 3, 4, 5, 6. I want to
report the % of each of these numbers.

Example: If I have 10 records and 5 of thenumbers are = to 6 then the
answer will be 50%. I would like to report the % of each number when
compared to the total number of records.

Thanks,
Linda





  #5   Report Post  
Rowan
 
Posts: n/a
Default

Linda

Assuming the number of audits data are in Column B. In D2 enter 0, D3 enter
1, D4 enter 2 etc up to 6. Then in E2 enter the formula

=COUNTIF($B:$B,D2)/COUNT(B:B)

Format as percentage and copy down to cell E8. This will give you the
percentage of employees who have done 0 audits, 1 audit, 2 audits etc.

In E9 enter
=SUM(E2:E8)
which will give you your total of 100% assuming you only have audits of 0 to
6 entered in column B.

Hope this helps
Rowan

"LMB" wrote:

That did give me a % for each record but I want a summary of the total
number....

Here is what the sheet looks like

11222 5
111 3
1 1
111111 6
121222 6
111111 6

the 1s and 2s represent charting audits 1=yes and 2=no

The 5,3, 1 is the number of charting audits done. The max number to be done
is 6. I need to report the % of employees who had 6 done, 5 done, and so
on. Then next quarter we will hopefully show an improvement and 100% of the
employees will have had 6 charting audits done.

Thanks,
Linda








"Peo Sjoblom" wrote in message
...
=B1/70

copy down (this assumes the first number is in B1) Then format as
percentage

--
Regards,

Peo Sjoblom


"LMB" wrote in message
...
Excel 2000. This may be too complicated but everything else I have asked
in here has been answered and works great. I have a column of numbers
(column 8). These numbers are the result of the count function. I have
70 records. Some of the counts are 0, some 1, 2, 3, 4, 5, 6. I want to
report the % of each of these numbers.

Example: If I have 10 records and 5 of thenumbers are = to 6 then the
answer will be 50%. I would like to report the % of each number when
compared to the total number of records.

Thanks,
Linda







  #6   Report Post  
Max
 
Posts: n/a
Default

Think you might have missed the response (pasted below)
given to your earlier post's follow-up query http://tinyurl.com/8nu7c
----------------------
Try: =TEXT(COUNT(B2:G2)/6,"0%")
which'll display the result in percentage to zero dp

For more on this "combining data",
try Debra's nice coverage at her:
http://www.contextures.com/xlCombine01.html

--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <atyahoo<dotcom
----
"LMB" wrote in message
...
Worked great! How about a %, can it convert to a percent too? I tried
changing the properties but that didn't work, I'll keep clicking...

Thanks,
Linda



  #7   Report Post  
Max
 
Posts: n/a
Default

Try: =TEXT(COUNT(B2:G2)/6,"0%")

As you probably mean to concat a text phrase to the percent result,
so maybe something like:
=TEXT(COUNT(B2:G2)/6,"0%")&" of 6"
would be closer to what you're after
--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <atyahoo<dotcom
----


  #8   Report Post  
LMB
 
Posts: n/a
Default

Gee...I had no idea what excel could do. I am trying to learn access, I can
see excel is just as powerful and challenging.

Thanks everyone. I finally got it!

Linda

"Max" wrote in message
...
Try: =TEXT(COUNT(B2:G2)/6,"0%")


As you probably mean to concat a text phrase to the percent result,
so maybe something like:
=TEXT(COUNT(B2:G2)/6,"0%")&" of 6"
would be closer to what you're after
--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <atyahoo<dotcom
----




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
how do I see more than 1000 records filtered ml Excel Discussion (Misc queries) 1 April 13th 05 08:47 PM
Find Matching Records in Two Worksheets kittybat Excel Discussion (Misc queries) 2 April 5th 05 06:51 PM
Filter Count of Records Retrieved. amkazen Excel Discussion (Misc queries) 2 March 31st 05 10:03 PM
Find matching records in two worksheets kittybat Excel Discussion (Misc queries) 3 March 30th 05 12:11 AM
Linking records schauncey Setting up and Configuration of Excel 0 March 11th 05 03:29 PM


All times are GMT +1. The time now is 08:40 PM.

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"