Hi, I want to find a sales reference in a PDF document. The sales reference is formatted like ACC/19000101/001 , etc. In the document, txt_array{i} represents a word. I need to determine if txt_array[i] starts with a prefix such as ACC or DCA , which are stored in a macro variable codes . I encountered an error, screenshots of the error are provided below. SYMBOLGEN: Macro variable CODES resolves to
'ACC','DCA','DCB','DCC','CNA'
NOTE: Line generated by the invoked macro "PROCESS_SALES".
6752 if (symget('refcode') = "") and (find(txt_array[i],&codes)>0) then call
____
72
6752 ! symputx('refcode',txt_array{i});
ERROR 72-185: The FIND function call has too many arguments. How can I fix this? Thanks
... View more