I'm sorry, this is new to me. My table is set up with the full tution cost
in colume A, first semester cost in colume B and second semester cost in
colume C. My formula is in the form and is as follows: [TUITION]/2+50 and
[TUITION]/2-50. I hope this helps you to help me.
Thank you,
Tracy
> > I set up the formulas on a form. The formula was working until the 200th
> > record. The price is showing on the form but it isn't populating the
[quoted text clipped - 9 lines]
>
> John W. Vinson [MVP]
>I'm sorry, this is new to me. My table is set up with the full tution cost
>in colume A, first semester cost in colume B and second semester cost in
>colume C. My formula is in the form and is as follows: [TUITION]/2+50 and
>[TUITION]/2-50. I hope this helps you to help me.
You're thinking in spreadsheet terms.
Will you never have a student who attends only one semester?
Will Column A always be the sum of columns B and C? If so, it SHOULD NOT EXIST
in your table, it should be calculated on demand!
I'd suggest a quite different design: a one to many relationship from a table
of Students to a table of TuitionCosts:
Students
StudentID <primary key>
LastName
FirstName
<other biographical data>
TuitionCosts
StudentID <part of primary key, link to Students>
Semester <rest of Primary Key, maybe a date field, maybe text such as
"Spring 2007">
Cost
<maybe other fields, e.g. reason for discount or waiver of fees>
You'ld put two records in TuitionCosts for the two semesters, and calculate
your expressions dynamically on a Form by setting the control source of an
unbound textbox to your expression.
John W. Vinson [MVP]
Tracy - 21 Mar 2007 15:10 GMT
Thank you for the information. I am going to try it and see what happens. I
will let you know.
Tracy
> >I'm sorry, this is new to me. My table is set up with the full tution cost
> >in colume A, first semester cost in colume B and second semester cost in
[quoted text clipped - 28 lines]
>
> John W. Vinson [MVP]
Tracy - 21 Mar 2007 18:51 GMT
I tried what you suggested and it works!
Thank you so much,
Tracy
> Thank you for the information. I am going to try it and see what happens. I
> will let you know.
[quoted text clipped - 33 lines]
> >
> > John W. Vinson [MVP]