S
Spidey3721
Making a service call tracking database. Have one form ([service call form])
that shows outstanding service calls - this form has a button that is to
bring up a form where I can enter in a new incident associated with that
service call
Example - Service call # = 301.003 (ServiceCallID) (text)
Associated service call incidents = 301.003.01; 301.003.02;
etc...(IncidentID) (text)
I am trying to get a procedure in the second form to calculates the max
IncidentID (which is text) where the first 3 number characters match the
first 3 number characters of the ServiceCallID textbox ([ServiceCallID
text]) from the first Form...
CODE:
StrMax = Nz(DMax("[IncidentID]", "[Service call incident
table]",Left([IncidentID],3) = Left (Forms![service call
form].[ServiceCallID text],3) , 0))
I am trying to get a textbox value in an input form to defualt to the next
incremetal value that is available for
that shows outstanding service calls - this form has a button that is to
bring up a form where I can enter in a new incident associated with that
service call
Example - Service call # = 301.003 (ServiceCallID) (text)
Associated service call incidents = 301.003.01; 301.003.02;
etc...(IncidentID) (text)
I am trying to get a procedure in the second form to calculates the max
IncidentID (which is text) where the first 3 number characters match the
first 3 number characters of the ServiceCallID textbox ([ServiceCallID
text]) from the first Form...
CODE:
StrMax = Nz(DMax("[IncidentID]", "[Service call incident
table]",Left([IncidentID],3) = Left (Forms![service call
form].[ServiceCallID text],3) , 0))
I am trying to get a textbox value in an input form to defualt to the next
incremetal value that is available for