@vmac Actually, GOTOs are not all that great when making loops, or code in general. They can cause what is known as 'spaghetti code', which is code that's very hard to read and maintain. If you want to make loops, stick to loop structures like WHILE...WEND, REPEAT...UNTIL and FOR...NEXT.