Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 SSIS and Import/Export (2008)
 read only one value from excel - ssis

Author  Topic 

arkiboys
Master Smack Fu Yak Hacker

1433 Posts

Posted - 2011-11-28 : 05:22:38
Hi,
I know how to read a range of data from excel in SSIS.
How do you read only say cell A6 from excel sheet?
Note that there is no heading for the cell. It only has a value which I want to read.
How is this done please?
For a range I use select * from [sheet name$A3:N5000]
Thanks

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2011-11-28 : 08:02:00
you can do it like

select [A6] from [sheet name$A3:N5000]

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page
   

- Advertisement -