﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / SQL Server 2008 / T-SQL (SS2K8)  / import data from excel only from specific cells / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Sat, 18 May 2013 22:32:03 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: import data from excel only from specific cells</title><link>http://www.sqlservercentral.com/Forums/Topic1283352-392-1.aspx</link><description>try using an open query[code="sql"]SELECT [Col1], [Col2], [Col3] INTO DestinationTable FROM OPENDATASOURCE('Microsoft.Jet.OLEDB.4.0','Data Source=C:\YourFolderLocation\yourFileName.xls;Extended Properties=Excel 8.0')...[WorkSheetName$]SELECT  [Col1], [Col2], [Col3] INTO DestinationTable FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0','Excel 8.0;Database=C:\YourFolderLocation\yourFileName.xls', [WorkSheetName$])SELECT  [Col1], [Col2], [Col3] INTO DestinationTable FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0','Excel 8.0;Database=C:\YourFolderLocation\yourFileName.xls', 'SELECT * FROM [WorkSheetName$]')[/code]</description><pubDate>Tue, 19 Feb 2013 16:51:16 GMT</pubDate><dc:creator>Kevin.roberts25</dc:creator></item><item><title>RE: import data from excel only from specific cells</title><link>http://www.sqlservercentral.com/Forums/Topic1283352-392-1.aspx</link><description>couldnt you copy the excel schema into a table form and sync up the rows and columns that way?</description><pubDate>Tue, 19 Feb 2013 16:00:55 GMT</pubDate><dc:creator>raym85</dc:creator></item><item><title>RE: import data from excel only from specific cells</title><link>http://www.sqlservercentral.com/Forums/Topic1283352-392-1.aspx</link><description>If you need something in specific cell you could look at this. I was looking for something similar and found it very useful.http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/70024/</description><pubDate>Tue, 19 Feb 2013 15:36:13 GMT</pubDate><dc:creator>Yev-704641</dc:creator></item><item><title>RE: import data from excel only from specific cells</title><link>http://www.sqlservercentral.com/Forums/Topic1283352-392-1.aspx</link><description>WHen adding Excel Source and under "Show Advanced Editor" and in Component Properties you could specify your own OpenRowset   like   Sheet1$A3:H3 where A3 is first column and H3 is last column to read data from.</description><pubDate>Tue, 19 Feb 2013 15:34:28 GMT</pubDate><dc:creator>Yev-704641</dc:creator></item><item><title>import data from excel only from specific cells</title><link>http://www.sqlservercentral.com/Forums/Topic1283352-392-1.aspx</link><description>Hello Everyone,Hope all is well.I was wondering if I can import data from an excel sheet only from specific cells to sql server 2008 r2. I can we can do this through sql import task but I want to know I can select data from specific cells only.Thanks for your help.</description><pubDate>Fri, 13 Apr 2012 12:35:34 GMT</pubDate><dc:creator>Sapen</dc:creator></item></channel></rss>