Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!
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
What's the fix?
Is age an excuse? Eighty-four and counting.
Programming powered by coffee.
This gives a "Double Binary Operator" error.
if item 1 of line x of field RandomNumbers is > lowVar then
if item 1 of line x of field RandomNumbers is < highVar then