3
Answers

Export Excel sheet data to csv format

Sweety

Sweety

13y
1.9k
1

I am storing my employees data in excel sheet i have developed a application where i can import csv file now i need to convert my excel sheet data to csv format so that i can import it to my application.I'm using microsoft office excel 2007 to store my data.

can any1 help me on this

Answers (3)
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 13y

excelSheets = excelWorkBook.Sheets("Sheet1")
excelSheets.Activate()
excelSheets.Shapes.Item(1).ControlFormat.List

Like this way you can find the different shapes (controls). Put a break point and check the values..