Skip to content
Advertisement

How to export Excel data from different sheets to SQL-SERVER Database?

I am new in Excel VBA and SQL. I have managed to create a macro button and push Excel cell data to SQL server tables. However, I am a bit puzzled:

How can I take Excel cell data from different sheets and then push them to different tables in SQL Server database? (Currently, I have 3 sheets – Customers, Test, Information – in one Excel file.)

Current working code:

Do I need to store the data in arrays and then push them to the database?

Advertisement

Answer

You shouldn’t use insert queries for every row you want to export. Instead, if you want to do it manually, open a recordset:

This has several advantages, including but not limited to increased performance, the ability to insert quoted values and increased stability.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement