I have a memo field in a database with typed text in it. Users want me to extract Manufacturer Code text between the strings "Code:" and "Cost" from this memo field. There may be multiple occurrences of these substrings in each memo field. I have tried this formula and have gotten error code "A loop was evaluated more than the maximum number of times allowed."
StringVar Code := {%creatorcomments};
While Instr({%creatorcomments},"Code:")>0 Do
(
Code := ExtractString({%creatorcomments},"Code:","Cost");
);
I need help, thanks so much
StringVar Code := {%creatorcomments};
While Instr({%creatorcomments},"Code:")>0 Do
(
Code := ExtractString({%creatorcomments},"Code:","Cost");
);
I need help, thanks so much