Hi I'm trying to automate a procedure where I export results from SQL to Excel. I've been successful in doing this for tables.i.e.insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=C:\Concordance\DB Country Report.xls;', 'SELECT Search_Country, [Document Type], Count FROM [Doc Type$]') select Search_Country, Doc_Type as 'Document Type', cast(count(*) as numeric) from DB1_Temp_Country_Searchgroup by Search_Country, Doc_TypeBut how would I write it to export to a particularly cell?I.e I would want the results of select count(*) from Table to go to cell reference C4 in an excel spreadsheet.Thanks!!