> 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
[quoted text clipped - 8 lines]
> Thanks,
> Linda
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
> =B1/70
>
[quoted text clipped - 13 lines]
>> Thanks,
>> Linda
Peo Sjoblom - 28 Apr 2005 19:51 GMT
=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
> That did give me a % for each record but I want a summary of the total
> number....
[quoted text clipped - 35 lines]
> >> Thanks,
> >> Linda
Rowan - 29 Apr 2005 07:20 GMT
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
> That did give me a % for each record but I want a summary of the total
> number....
[quoted text clipped - 35 lines]
> >> Thanks,
> >> Linda
Max - 30 Apr 2005 12:34 GMT
Think you might have missed the response (pasted below)
given to your earlier post's follow-up query re: 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

Signature
--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <at>yahoo<dot>com
----
"LMB" <RomulanQueen@10Forward.SSTNG> wrote in message
news:OQ7oQM$SFHA.2172@tk2msftngp13.phx.gbl...
> 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
Max - 30 Apr 2005 13:13 GMT
> 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

Signature
--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <at>yahoo<dot>com
----
LMB - 30 Apr 2005 14:42 GMT
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
>> Try: =TEXT(COUNT(B2:G2)/6,"0%")
>
[quoted text clipped - 10 lines]
> xdemechanik <at>yahoo<dot>com
> ----
Max - 30 Apr 2005 17:40 GMT
Glad to hear that !
Thanks for posting back ..

Signature
--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <at>yahoo<dot>com
----
> 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