Sorry, I am not following you. Can't the teachers see the 0.5? Or is the
problem that they have difficulty multiplying by 2 <G>
Are you saying that you would want the 1 that resulted in the 0.5 being
displayed as well.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
Hi Doug,
Yes, the teachers see the .5 initially. However, when I put the grade in
and add that macro, it erases the .5 and replaces it with the GPA value. I
need to show both values. Yes, I would want the 1 that resulted in the 0.5
being displayed as well.
Thanks again!
Janet
> Sorry, I am not following you. Can't the teachers see the 0.5? Or is the
> problem that they have difficulty multiplying by 2 <G>
[quoted text clipped - 111 lines]
> >> > >> >> > is
> >> > >> >> > interested :) Thank you!!
Doug Robbins - Word MVP - 18 Mar 2008 04:34 GMT
Isn't the .5 a constant by which the number corresponding to the A's, B's,
C's and D's is multiplied? Do the teachers need to be constantly reminded
of it?

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Hi Doug,
>
[quoted text clipped - 130 lines]
>> >> > >> >> > is
>> >> > >> >> > interested :) Thank you!!
jlewis - 18 Mar 2008 12:34 GMT
Hi Doug,
The .5 is the credit value for the class. It could be a .25 or a 1 or some
other amount of credit. Students need a total of 24 credits for graduation.
That number needs to stay visible and I have it total up at each term, grade
level and then cumulatively in the upper right-hand corner. I gave each
value a bookmark name.
The GPA is determined by the letter grade times the credit.
This may be impossible in Word :(
Janet
> Isn't the .5 a constant by which the number corresponding to the A's, B's,
> C's and D's is multiplied? Do the teachers need to be constantly reminded
[quoted text clipped - 134 lines]
> >> >> > >> >> > is
> >> >> > >> >> > interested :) Thank you!!
Doug Robbins - Word MVP - 18 Mar 2008 13:05 GMT
It is not impossible, but that was not a criteria in your original post and
the document that I downloaded did not contain the necessary field in which
to display the data. You really need to work out the total requirement
before starting out.
In place of the following line of code that I gave you
Selection.Rows(1).Cells(i - 1).Range.FormFields(1).Result = 0.5 * k
You would need to use something like
Selection.Rows(1).Cells(i + 1).Range.FormFields(1).Result =
Selection.Rows(1).Cells(i - 1).Range.FormFields(1).Result * k
This assumes that the GP is to be displayed in the cells of a column that
you add to the right of the column that contains the dropdown. I would
suggest that you arrange the form that way as it makes referencing the
formfields possible in a way that will allow you to use the same macro on
exit from all of the dropdown formfields.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Hi Doug,
>
[quoted text clipped - 167 lines]
>> >> >> > >> >> > is
>> >> >> > >> >> > interested :) Thank you!!
jlewis - 20 Mar 2008 20:03 GMT
Hi Doug,
File location: http://www.sdb.k12.wi.us/lewis/ILP.doc
Thank you for your continued help with this project. I made the first round
of modifications by adding cell in a column that to the right of the column
that contains the dropdown.
The last step is to have the AVERAGE of the individual class GPA fields
displayed in the GPA field in the upper right hand corner of the document.
Is this possible?
Thank you,
Janet
> It is not impossible, but that was not a criteria in your original post and
> the document that I downloaded did not contain the necessary field in which
[quoted text clipped - 186 lines]
> >> >> >> > >> >> > is
> >> >> >> > >> >> > interested :) Thank you!!