helenpostle
Registered User.
- Local time
- Today, 11:26
- Joined
- Jan 28, 2002
- Messages
- 17
I have a form with, in one section, 8 fields to be filled in, when these are filled in you can click on a button which will add the values in the 8 fields and then enter a category in another field depending on the result. I want it to come up with a message saying which field hasn't been filled in before it does the calculation. I have tried several things so far without much success, one thing I tried was
intProd = Me![productType]
if (isNull(Me!productType)) then
MsgBox "You haven't filled in the Product Type"
endif
intCond = Me![condition]
if (isNull(Me!condition)) then
MsgBox "You haven't filled in the Condition"
endif
intTot = intProd + intCond
I also tried putting in some error trapping code and changing the entry for Null entry to "You haven't filling in all the scores" but then this error message comes up if any other required field on the form is not filled in which isn't what I want.
intProd = Me![productType]
if (isNull(Me!productType)) then
MsgBox "You haven't filled in the Product Type"
endif
intCond = Me![condition]
if (isNull(Me!condition)) then
MsgBox "You haven't filled in the Condition"
endif
intTot = intProd + intCond
I also tried putting in some error trapping code and changing the entry for Null entry to "You haven't filling in all the scores" but then this error message comes up if any other required field on the form is not filled in which isn't what I want.