Yes you can use "+" to concatenate in Access,
Sub Conc()
Dim s As String, f As String, g As String
s = "Bon": f = "jo": g = "ur"
Debug.Print s + f + g
End Sub
but as you see, in your own code, it can be problematic. With integers of course, they will be added, and apparently, when referencing...