I've been trying to figure this out for a while now...

I have a do while loop
on the first itteration the result will be 70
on the 2nd it will be 82
on the 3rd it will be 92
on the 4th it will be 103

I need it to stop when it gets above 90 and below 100
ie:
if on the 3rd its 92, 4th 99, 5th 102 i need it to stop on the 4th

I hope this makes sense.

Do While 90 < flowtest2 < 100
doesnt work :D (thats what I want.)