Hi!

Earilier times I used to do some programming in basic and in pascal. Now time has passed and it is needed to write a little program.

Examining my knowledg and consulting with vba literature I wrote a test program but someway it doesnt launch, No error massages no sign of launched program on my excel sheet.

I have allowed all macroses to be used in excel. But I am out of knowledge to act on. This is just 1 purposeless progrem about to write numbers from 1 to 100 by dioganal on screen

[VBA]Sub mingiasi()
Dim i As Integer
i = 0
Do While i = 100
i = i + 1

Range(i, i).Value = i
Loop
End Sub
[/VBA]
I would preciate help and would be very greatful!

Suddenflash