Hi guys
I want to update the rebooker_details field of input table with the following :
rebooker_detail=(old rebooker details)+rebook to loc='" & Me.[Combo33].Value & "' and dept='" & Me.[Combo35].Value & "'
and so I am writing the following update statement but it is giving me compiler error/syntex error.
could anyone please figure it out.
Thanks
AMna
I want to update the rebooker_details field of input table with the following :
rebooker_detail=(old rebooker details)+rebook to loc='" & Me.[Combo33].Value & "' and dept='" & Me.[Combo35].Value & "'
and so I am writing the following update statement but it is giving me compiler error/syntex error.
Code:
ssql="update input set rebooker_details=rebooker_details & " " & "rebook to loc=" & '" & Me.[Combo33].Value & "' & "Dept= " & '" & Me.[Combo35].Value & "' "
could anyone please figure it out.
Thanks
AMna