Code:
With .Workbooks.Open("R:\0.2.2 Procurement Dept - Shared\3.0 Groups\SQD\FTTQ Charts.xlsx")
lngLastDataRow = .Worksheets("ChartData").Cells.SpecialCells(11).Row
.Worksheets("ChartData").Range("A" & CStr(lngLastDataRow)).CopyFromRecordset rst
.Worksheets("ChartData").Range("A:D").RemoveDuplicates Columns:=4
Above is a snippet of code that is being used to export data to excel 2010. The data gets into excel however it is adding a blank row above the data. I am not entirely sure why it would do that based on what I can see. I have had this issue before but cannot remember how I resolved it.