Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Save excel Range as CSV file
#2
Macro Macro2708
Code:
Copy      Help
;1
ExcelSheet es.Init("Sheet1") ;;assuming that the file is already open. Other parameters of this function will probably allow you to fully implement step 1.
;2
ARRAY(str) a; es.CellsToArray(a "A1:D21")
;3
ICsv x._create
x.FromArray(a)
x.ToFile("C:\test\data.csv")

;results
run "C:\test\data.csv"


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)