Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,514
Default autofill handle rows to coulmns

My biggest thing is they get all the data with only there score not
all
the canidates scores and that it fits on one page and is readable and
not all mashed together. i would greatly appreciate any help in being
pointed in the right direction.


This will probably require VBA. My student grades manager app mentioned
in my other reply prints out reports for selected students or the
entire 'class', each on a separate sheet. The sheet also allows
filtering student data for a single student so the scores can be
viewed/discussed directly with the instructor without the other student
data viewable. Perhaps you can do similar!

During my reworking of your project it seemed likely that it would be
worth trying out in that app. The format is school-based in that it
returns PointAvg, letter grade, and percent avg based on a GradesTable.
I might try your project to see how it fits in. The obstacle as I see
it is going to be handling the 3 judge gradings, but 3 rows per student
will definitely work similar to my rework sample. I give it a whirl and
report back...

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,514
Default autofill handle rows to coulmns

Ok.., normally my app uses 1 sheet per class/instructor meaning each
instructor would input scores for a single class. In your scenario each
judge would have their own sheet for the same group of students. I was,
however, able to set up on a single sheet similar to how I did in my
rework sample.

Each module shows Total Score and AVG only because each is 'weighted'
in the Summary module. For example, your "Kicks" module has 13 score
items and if each item's perfect score was 10 then the total score
possible is 130. If the 'weighted' value of "Kicks" is 10% of the
entire course then the total possible mark for "Kicks" is 13 for the
entire course. If your courses are structures as belt levels then you'd
use 1 sheet per class per belt level per instructor (judge).
Optionally, you could put all instructor/judge data on a single belt
level sheet in two ways:

1 row per instructor/judge per student
1 row per student using formula style input from each judge;
Example:
=8+9+8
OR
=AVERAGE(8,9,8)

...where, in all practicality, each judge would have a printout that
gets hand written inputs to be entered into the class sheet later on.
I'm inclined to go with the latter method so the score item perfect
score value doesn't need fudging with, and reports currently process a
student list as 1 row per student.

Ultimately, each module makes up a percentage of the entire course...

Creeds: 2*20=40; Weight=10% (4)
Physical Training: 5*20=100; Weight=5% (5)
Strikes&Punches: 5*10=50; Weight=10% (5)
Combinations: 5*25=125; Weight=10% (12.5)
Forms: 5*20=100; Weight=10% (10)
Weapons: 4*50=200; Weight=10% (20)
Kicks: 10*13=130; Weight=10% (13)
Sparring: (3*10)+(6*30)=210; Weight=10% (21)
Self Defense: 10*10=100; Weight=10% (10)
Board Breaks: (4*15)+(2*20)=100; Weight=10% (10)
Bonus Material: 3*100=300; Weight=5% (15)

...which represents 100% of the course (not factoring if the Attendance
module has a weight). That amounts to 1455 possible score. When
weighted as indicated, final average is based on (actual score)/(total
score) expressed as percent where total score evaluates to the sum of
the weighted values.

The final grade/ptAvg is defined in the GradesTable for given ranges of
final average. I guess that you need to have something that automates
printing reports, but my app does this per student by module items, per
module, and final score values/grades. Reports can be displayed in
PrintPreview, and are generated for selected students only OR the
entire class.

If interested, I can prep 2 class sheets that example the above and
post a link. Please advise...

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion


  #3   Report Post  
Junior Member
 
Posts: 5
Default

Quote:
Originally Posted by GS[_2_] View Post
Ok.., normally my app uses 1 sheet per class/instructor meaning each
instructor would input scores for a single class. In your scenario each
judge would have their own sheet for the same group of students. I was,
however, able to set up on a single sheet similar to how I did in my
rework sample.

Each module shows Total Score and AVG only because each is 'weighted'
in the Summary module. For example, your "Kicks" module has 13 score
items and if each item's perfect score was 10 then the total score
possible is 130. If the 'weighted' value of "Kicks" is 10% of the
entire course then the total possible mark for "Kicks" is 13 for the
entire course. If your courses are structures as belt levels then you'd
use 1 sheet per class per belt level per instructor (judge).
Optionally, you could put all instructor/judge data on a single belt
level sheet in two ways:

1 row per instructor/judge per student
1 row per student using formula style input from each judge;
Example:
=8+9+8
OR
=AVERAGE(8,9,8)

...where, in all practicality, each judge would have a printout that
gets hand written inputs to be entered into the class sheet later on.
I'm inclined to go with the latter method so the score item perfect
score value doesn't need fudging with, and reports currently process a
student list as 1 row per student.

Ultimately, each module makes up a percentage of the entire course...

Creeds: 2*20=40; Weight=10% (4)
Physical Training: 5*20=100; Weight=5% (5)
Strikes&Punches: 5*10=50; Weight=10% (5)
Combinations: 5*25=125; Weight=10% (12.5)
Forms: 5*20=100; Weight=10% (10)
Weapons: 4*50=200; Weight=10% (20)
Kicks: 10*13=130; Weight=10% (13)
Sparring: (3*10)+(6*30)=210; Weight=10% (21)
Self Defense: 10*10=100; Weight=10% (10)
Board Breaks: (4*15)+(2*20)=100; Weight=10% (10)
Bonus Material: 3*100=300; Weight=5% (15)

...which represents 100% of the course (not factoring if the Attendance
module has a weight). That amounts to 1455 possible score. When
weighted as indicated, final average is based on (actual score)/(total
score) expressed as percent where total score evaluates to the sum of
the weighted values.

The final grade/ptAvg is defined in the GradesTable for given ranges of
final average. I guess that you need to have something that automates
printing reports, but my app does this per student by module items, per
module, and final score values/grades. Reports can be displayed in
PrintPreview, and are generated for selected students only OR the
entire class.

If interested, I can prep 2 class sheets that example the above and
post a link. Please advise...
The only thing is the sum is not = to the whole total of parts, i.e some things may be worth more. like PT with only 5% it is closer to 15% there is a part of the grading system that is not accounted for in the sheet. When they have over a 9.0 they pass that segment with high marks and based on how many segments they get high marks on can change the result of there test / rank. also the test is a 3 test process that takes 6 month's between each test and over the course of the testing process they will need to have high marks or high passing grade in 85% of all catigorys atleast once. i havent made the sheet to accomidate more than one test at this point but may be looking to softwhere stronger than excel in the futre...... its just what i know so it will hafto do for a functioning prototype
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,514
Default autofill handle rows to coulmns

Ok this seems like it posses some possible solutions but there is a
reason why all students are grouped together. as the scores are
entered
the conditional formattig will reflect how they are doing in
comparison
to the group. as well as they will all be judged at the same time so
the
least ammount of navigation time for judges the better. i do like the
idea of total average freez frame/cells to eliminate the replication
of
that part of the code. I will look over some of your other
suggestions.
thankyou for the input.


I didn't know the criteria for the CF and so is why I deliberately
didn't do any other than the headers row!

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion


  #5   Report Post  
Junior Member
 
Posts: 5
Default

Quote:
Originally Posted by GS[_2_] View Post
Ok this seems like it posses some possible solutions but there is a
reason why all students are grouped together. as the scores are
entered
the conditional formattig will reflect how they are doing in
comparison
to the group. as well as they will all be judged at the same time so
the
least ammount of navigation time for judges the better. i do like the
idea of total average freez frame/cells to eliminate the replication
of
that part of the code. I will look over some of your other
suggestions.
thankyou for the input.


I didn't know the criteria for the CF and so is why I deliberately
didn't do any other than the headers row!

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion
So how do i print a summery for each cannidate?


  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,514
Default autofill handle rows to coulmns

'GS[_2_ Wrote:
;1620239'] Ok this seems like it posses some possible solutions but
there is a-
reason why all students are grouped together. as the scores are
entered
the conditional formattig will reflect how they are doing in
comparison
to the group. as well as they will all be judged at the same time
so the
least ammount of navigation time for judges the better. i do like
the idea of total average freez frame/cells to eliminate the
replication of
that part of the code. I will look over some of your other
suggestions.
thankyou for the input.-


I didn't know the criteria for the CF and so is why I deliberately
didn't do any other than the headers row!

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion


So how do i print a summery for each cannidate?


That's going to need VBA to automate as mentioned in my other post
about my student grades app. My routine is specific to the structure of
my class sheets and so writing code for your class sheets would be
different where named ranges are refs for data sources. I'm doing a
sample workbook now and I'll create a report for student "bob" and
leave the report sheet in the file (this is a temp wks used for
PrintPreview that gets deleted after printout). I'll put a link for you
to have a look...

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,514
Default autofill handle rows to coulmns

Ok, I finished doing the various examples of doing your student grades
in my app. The file contains 6 class sheets and 1 sample report sheet
for "bob". Comments are included to explain each sheet's structure
where clarity is warranted. Otherwise, the formulas are
self-explanatory.

The app has its own menus/toolbar so you won't be able to use its
functionality while viewing it without using its portable
ReportGenerator addin.

Use the downlink posted earlier and look for "Yudanja1.1.xls" and
"MxpReports.zip".

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion


  #8   Report Post  
Junior Member
 
Posts: 5
Default

Quote:
Originally Posted by GS[_2_] View Post
My biggest thing is they get all the data with only there score not
all
the canidates scores and that it fits on one page and is readable and
not all mashed together. i would greatly appreciate any help in being
pointed in the right direction.


This will probably require VBA. My student grades manager app mentioned
in my other reply prints out reports for selected students or the
entire 'class', each on a separate sheet. The sheet also allows
filtering student data for a single student so the scores can be
viewed/discussed directly with the instructor without the other student
data viewable. Perhaps you can do similar!

During my reworking of your project it seemed likely that it would be
worth trying out in that app. The format is school-based in that it
returns PointAvg, letter grade, and percent avg based on a GradesTable.
I might try your project to see how it fits in. The obstacle as I see
it is going to be handling the 3 judge gradings, but 3 rows per student
will definitely work similar to my rework sample. I give it a whirl and
report back...

Thank you for lookin at that,, i would be interested in taking a look at it.
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
handle data with too many rows hurriance New Users to Excel 2 January 27th 06 04:02 PM
SELECT FROM 2 COULMNS + 1 ROW Saintsman Excel Worksheet Functions 3 October 10th 05 10:20 AM
To many rows for EXCEL to handle moglione1 Excel Discussion (Misc queries) 3 September 9th 05 02:52 PM
Coulmns with Zip Codes [email protected] Excel Worksheet Functions 10 January 30th 05 01:57 AM
Coulmns with Zip Codes Vince48 Excel Worksheet Functions 0 January 29th 05 01:43 AM


All times are GMT +1. The time now is 03:31 AM.

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"