All -
I have the following in the Field row of a column in a query that runs
fine against a local table:
MSA: InStr([Forms]![frm_Browse1]![tb_strSQL],[CONTENT]![FL1])
I'm now trying to run the query against a linked DB2 table. I get a
"Connection Failed" error.
I think I understand 2 things from other posts:
1. DB2 is not going to accept this because of my use of the InStr.
2. The DB2 equivalent of InStr is POSSTR.
So I've modified the query so it reads:
MSA: POSSTR([Forms]![frm_Browse1]![tb_strSQL],[CONTENT]![FL1])
I get an "Undefined Function" error.
If what I think I know is true, how would I construct my field to use
POSSTR? I've tried lots of syntax variations with no joy.
If what I think I know is false, can someone point me in the correct
direction? Do I need to set up POSSTR in a module somehow?
Thanks,
Patrick