Читать книгу Excel 2019 Power Programming with VBA - Michael Alexander, Dick Kusleika - Страница 194
For-Next loops
ОглавлениеThe simplest type of a good loop is a For
-Next
loop. Its syntax is as follows:
For counter = start To end [Step stepval] [instructions] [Exit For] [instructions] Next [counter]