I’m trying to insert an email address with a comma in it (and it has to be entered that way) and I’m currently stumped on how to properly insert the exact text into this cell.
The e-mail address that needs to be entered as/is:
joe,.E.Blow@someemail.com
What I’ve tried is work different escape patterns into the code. For example, this…
'''joe'''+','+'''.E.Blow@someemail.com'''
gets entered into the database as…
'joe','E.Blow@someemail.com'
I’ve tried different combinations with single and double quotes and it can’t even get past a simple parse without errors.
What is the best way to go about getting the email address entered as noted above? I know it’s something simple but I’m just spinning my wheels here.
the solution is simple:
for example:
joe,.E.Blow@someemail.comSEE FIDDLE