My Office Connector formula does not return the correct results when the ID field has a space in it.
Categories: Office Connector Query
ToolBox
-
This can be caused if you forget to enclose the ID in single quotes (this applies to text IDs). For example:
“(TPAYID = ‘01’) AND (TEMPID = “ & A2 & “)”
Should be
“(TPAYID = ‘01’) AND (TEMPID = ‘“ & A2 & “’)”




Leave a Reply!
You must be logged in to post a comment.