- Код: Выделить всё
iLastStroka = Range("A1").End(xlDown).Row
Open "D:\3_Per\1.txt" For Output As #1
For i = 1 To iLastStroka
data = Cells(i, 1).Value
Print #1, data
Next i
Close #1
.......но на Print #1, data идет ошибка Bad file mode (Error 54).
help по ошибке "A Print # statement specifies a file opened for an access mode other than Output or Append."
В чем ошибка то?