Skip to content
Trainings, consultancy, tutorials
Understand it right now!
For corporations
Individually
Consultancy
Tutorials
Contact
Where
Můj účet
Registrace
Přihlášení
0
No products in the cart.
Subtotal:
0
Kč
View Cart
Checkout
MENU
For corporations
Individually
Consultancy
Tutorials
Contact
Where
You are here:
Home
Tutorials
Office Script tutorials
Office Script microtutorial – for…
Tutorials
Office Script microtutorial – for loop
This loop repeates five times:
function main(workbook: ExcelScript.Workbook) {
for (let mycounter = 0; mycounter < 5; mycounter = mycounter + 1)
{
123+123
}
}