M
mia_placidus
I have the following expression:
strName = """[FileAs] = """ & strLastName & ", " &
strFirstName & """""" & """"
It Evaluates to: "[FileAs]= "Lee, Larry"""
It Should Evaluate to "[FileAs] = ""Lee, Larry"""
When I try to get the extra quotation mark in front of
Lee, then I get an error message on the comma that
says "Expected end of Statement"
This is confusing, any help?
strName = """[FileAs] = """ & strLastName & ", " &
strFirstName & """""" & """"
It Evaluates to: "[FileAs]= "Lee, Larry"""
It Should Evaluate to "[FileAs] = ""Lee, Larry"""
When I try to get the extra quotation mark in front of
Lee, then I get an error message on the comma that
says "Expected end of Statement"
This is confusing, any help?