Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim i As Integer
Open "C:\TEMP\Test.csv" For Output As #1
For i = 1 To 100
Print #1, Range("A" & i).Value & ";" & _
Range("B" & i).Value & ";" & _
Range("C" & i).Value & ";" & _
Range("D" & i).Value & ";" & _
Range("E" & i).Value & ";" & _
Range("F" & i).Value
Next i
Close #1