I am trying to get a simple calculated field on a form - one that adds other
fields (e.g. =Maxinv1+maxinv2+maxinv3 ) but it wont add - what am I doing
wrong
What does 'Won't add' mean?
Do you get #error displayed in the control?
Do you get an incorrect result?
Do you get no result?
Do all of the fields have a value or are some Null?
If so, did you use the Nv() function in the expression?
If not, look it up in VBA help and try it.
=Nz(Maxinv1,0)+Nz(maxinv2,0)+Nz(maxinv3,0))
If that doesn't 'fix' it then, please post your exact expression.
Please give us an example of the data in those fields and the result
you expect.
Please give us what the actual result of your example data is.
Please include your Access version number.