D
DavidW
I tried
If Len(Nz([Forms]![onroaduse].Text33, "")) = 0 Then
beep
End If
to find out if a textbox was empty or not and still having problems.
I get the error
"The Expression you've enter does not contain a value"
Text33 default value is getting its information from
[Forms]![onroaduse].trblesubform!unit
I tried to use the textbox"unit" in the subform and had the same problem
"unit" has a control source of a query that looks at a field in a table and
distingiushes if there is data with a certain date.
I also tried in the Text33 for the default value =nz(
[Forms]![onroaduse].trblesubform!unit, 0) and when I ran the code I got
script out of range
How do you resolve the issue of a expression that has no value?
If Len(Nz([Forms]![onroaduse].Text33, "")) = 0 Then
beep
End If
to find out if a textbox was empty or not and still having problems.
I get the error
"The Expression you've enter does not contain a value"
Text33 default value is getting its information from
[Forms]![onroaduse].trblesubform!unit
I tried to use the textbox"unit" in the subform and had the same problem
"unit" has a control source of a query that looks at a field in a table and
distingiushes if there is data with a certain date.
I also tried in the Text33 for the default value =nz(
[Forms]![onroaduse].trblesubform!unit, 0) and when I ran the code I got
script out of range
How do you resolve the issue of a expression that has no value?