varname = test1, test2
for x = 1 to 2
flda = "test" & x
if flda = "1" then
flag=true
else
flag=flase
endif
next
I have new variable name call test1 and test2. I want to check if the value of both of these fields are equal to 1. The code above its not working and I'm missing something. What is the syntax to check FLDA?
for x = 1 to 2
flda = "test" & x
if flda = "1" then
flag=true
else
flag=flase
endif
next
I have new variable name call test1 and test2. I want to check if the value of both of these fields are equal to 1. The code above its not working and I'm missing something. What is the syntax to check FLDA?