Hi, Can anyone please tell me if there is anyway by which i can exit from a while loop when a certain condition is true
when i tried this below,i get some errors
num = 0
while(num<10)
if(status = "Fail") then
exit while
end if
num = num+1
wend
I get some errors.Is there any work around for this.