Double Binary
Posted: Fri May 06, 2016 8:30 pm
This gives a "Double Binary Operator" error.
What's the fix?
Code: Select all
put the number of lines in field RandomNumbers into lineCount
repeat with x = 1 to lineCount
if item 1 of line x of field RandomNumbers is > lowVar then
if item 1 of line x of field RandomNumbers is < highVar then
put line x of field RandomNumbers & CR after field FirstFilter
end if
end if
end repeat