requiring fields to be filled in before calculation takes place

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.
 
I've got this nearly sorted now by adding error trapping to the sub, but if someone doesn't fill in 3 fields it comes up with 3 error messages, is there a way to make it only come up with one error message?

Helen
 
This problem is difficult to overcome as access writes directly to the table before validation occurs. If your shortcut method does not work try creating an intermediate table which is used to collect the entries. Then put a button on your form to accept the record (eliminate all navigation buttons) which runs the code to validate each field in your one record table. If ok append to main table else msgbox. I have also done this by setting up unbound text boxes as an alternative to an intermediate table.
 
How about trying this.

dim strMissing as string, boolShowMessage as Boolean
boolShowMessage = False
strMissing = "You have not filled in values for:"
intProd = Me.NameOfProductControl
if (IsNull(Me.NameOfProductControl)) Then
boolShowMessage = True
strMissing = strMissing & vbcrlf & "Products"
End if

intCond = Me.NameOfConditionControl
if (IsNull(Me.NameOfConditionControl)) Then
boolShowMessage = True
strMissing = strMissing & vbcrlf & "Condition"
End if

etc.....

if boolShowMessage = True then
MsgBox strMissing
exit sub
end if

intTot = intProd + intCond = etc...
 
Sorry having reread your question I missed the point.1) Rather then test for null make new entries set a value using the default property such as * in each field. Then test for this known value(null could be space could be empty string etc they all look the same).It does not guarantee correct entry.2)Set up code for each control on exit (when mouse moves to next control - not infallible this so I prefer a combination of my previous reply and this one for perfect control) to validate or replace with * 3) When the button is pressed to accept. Validate each in turn as you have in your code and construct a message string. If first is invalid message = message + "one, " etc (note message should be initialised as "errors found = "). Set an errflag from 0 to 1 if any error found.Print message at end in your msgbox if errflag=1 and prevent update unless errflag=0
 
Fizzio

I tried what you suggested. If I leave my error checking code in which is:

on error goto Err_cmdCalc_Click:

Err_cmdCalc_Click:
Select case Err.Number
Case 94 ' You haven't filled in all the scores"
Resume next
case else
msgBox Err.description
end select
end sub

Then, I get an error message saying "You haven't filled in all the scores" then an error message saying "You have not entered a score for: (whichever)"

If I take the error checking code out, I just get the ordinary Access error message "invalid use of null"

If I change the error checking code to:
MsgBox strMissing, the error message says "You have not entered a score for:"
 
OK, take out your case 94 trapping and try this instead.

dim strMissing as string, boolShowMessage as Boolean
boolShowMessage = False
strMissing = "You have not filled in values for:"
intProd = Nz(Me.NameOfProductControl) 'Convert Null Value to Zero
if intProd <= 0 Then
boolShowMessage = True
strMissing = strMissing & vbcrlf & "Products"
End if

intCond = Nz(Me.NameOfConditionControl)
if intCond <= 0 Then
boolShowMessage = True
strMissing = strMissing & vbcrlf & "Condition"
End if

etc.....

if boolShowMessage = True then
MsgBox strMissing
exit sub
end if

intTot = intProd + intCond = etc...

I'm pretty sure this is correct.
 
Thanks, that works, the only trouble is 0 can be a value in the field, I tried setting the default for the field to -1 then checking for < 0, but I don't really want the -1 to appear in the field
 
ok, In the field properties in design mode, Set the validation rule in each of the fields to >=0
Then Set validation text to whatever you want If they try to enter a value <0 then it will display the message and not let the user leave that field.

Getting there!
smile.gif
 
I have already got a validation rule I've got 0 or <=3 as the value has to be 0 1 2 or 3 but that doesn't have any effect unless you try to enter values that are not 0 or less than or = to 3. I want to check that a user doesn't click on the caclulate button without entering any figures at all, so when they click on the calculate button, it must first check that there are values in the fields, then add them together, then write the result to another field.
 
I've got this working now, I created a macro that did what I wanted then converted it to VB, what it came up with was

if (eval("[forms]![formname]![fieldname] is null")) then
MsgBox "You have not entered a score for etc"
end if
etc
then after the last endif for that lot, it adds up the scores and sets the values in the relavant fields, In my error trapping section I've just got
exit sub
now it does come up with several boxes if there are several fields not filled in but it works so I'm happy with that, thanks for everyones help
 
Sorry, my fault.

try replacing
intProd = Nz(Me.NameOfProductControl) 'Convert Null Value to Zero
if intProd <= 0 Then

with
intProd = Nz(Me.NameOfProductControl) 'Convert Null
Value to Zero
if me.NameOfProductControl = "" Then
 

Users who are viewing this thread

Back
Top Bottom