MTarkington
Programmer
Good afternoon,
I am having a problem with a FOR loop returning a True/False value instead of the value that I need.
the code:
for counter := 1 to 70 do
(
if field = array_variable[counter] then
(
"success";
exit for;
)
I would think that if the field finds a match in the array, it would display "success", however, it does not display anything of fields that I KNOW it matches and it also only displays 'True' for 1 field in particular.
Any ideas?
TIA,
Mark
I am having a problem with a FOR loop returning a True/False value instead of the value that I need.
the code:
for counter := 1 to 70 do
(
if field = array_variable[counter] then
(
"success";
exit for;
)
I would think that if the field finds a match in the array, it would display "success", however, it does not display anything of fields that I KNOW it matches and it also only displays 'True' for 1 field in particular.
Any ideas?
TIA,
Mark