I am having a msg box in after update event with following code :
MsgBox "Units transferred " & Me!qty & Me!order & Me!item, vbOKOnly + vbInformation
This message works fine but ideally I want the message like this :
MsgBox Me!qty "nos of" & Me!item "transferred to" & Me!location, vbOKOnly + vbInformation
I am not getting the syntax right. Grateful for any help
MsgBox "Units transferred " & Me!qty & Me!order & Me!item, vbOKOnly + vbInformation
This message works fine but ideally I want the message like this :
MsgBox Me!qty "nos of" & Me!item "transferred to" & Me!location, vbOKOnly + vbInformation
I am not getting the syntax right. Grateful for any help