Feb 24, 2004 #1 Bujitsu MIS Oct 23, 2003 67 AU Hi, How do use instr() to find the double commas("?? Do I have to some how use a hex value?? Thank you
Hi, How do use instr() to find the double commas("?? Do I have to some how use a hex value?? Thank you
Feb 24, 2004 #2 MrSatan Programmer Jul 16, 2002 25 AU Double commas or double quotes? double commas ==> instr(1, Text, ",," double quotes ==> instr(1, Text, """" S. Upvote 0 Downvote
Double commas or double quotes? double commas ==> instr(1, Text, ",," double quotes ==> instr(1, Text, """" S.
Feb 24, 2004 #3 paulbent Programmer Mar 4, 2002 1,071 GB If Instr(1, strSource, Chr$(34) & Chr$(34)) Then Paul Bent Northwind IT Systems http://www.northwindit.co.uk Upvote 0 Downvote
If Instr(1, strSource, Chr$(34) & Chr$(34)) Then Paul Bent Northwind IT Systems http://www.northwindit.co.uk
Feb 24, 2004 Thread starter #4 Bujitsu MIS Oct 23, 2003 67 AU Thanks guys!! Your suggestions did the job!!! Upvote 0 Downvote