Running VBA code to join access tables into one SQL table.
If Not IsNull(info(x)) And info(x) <> "" Then
join = join & info(x).Name & ": " & CStr(info(x).Value) & "{P}"
Else
join = join & info(x).Name & ": Not Reported{P}"
End if
Any ideas what is going wrong. The error is occurring on the underlined code.