2016-10-25 3 views
0

У меня есть тонна файлов excel, которые я объединяю в один файл excel, и мне нужно поместить имя столбца или заголовок в первую строку. У меня 3 столбца: customerid, дата, прогноз. Как поместить имя столбца в ячейки A1, B1 и C1 в код VBA? Благодарю.Заголовок заголовка VBA excel

Sub simpleXlsMerger() 
Dim bookList As Workbook 
Dim mergeObj As Object, dirObj As Object, filesObj As Object, everyObj As Object 
Application.ScreenUpdating = False 
Set mergeObj = CreateObject("Scripting.FileSystemObject") 

'change folder path of excel files here 
Set dirObj = mergeObj.Getfolder("directory\path") 
Set filesObj = dirObj.Files 
For Each everyObj In filesObj 
Set bookList = Workbooks.Open(everyObj) 

'change "A2" with cell reference of start point for every files here 
'for example "B3:IV" to merge all files start from columns B and rows 3 
'If you're files using more than IV column, change it to the latest column 
'Also change "A" column on "A65536" to the same column as start point 
Range("A2:C" & Range("A65536").End(xlUp).Row).Copy 
ThisWorkbook.Worksheets(1).Activate 

'Do not change the following column. It's not the same column as above 
Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial 
Application.CutCopyMode = False 
bookList.Close 
Next 
End Sub 
+0

Вы хотите только столбец в А, В и С, даже если вы копируете столбцы A до IV каждой книги? – Kyle

+0

@Kyle Да, просто хотите колонки A1, B1 и C1. Я просто изменил диапазон кода на A2: C – sharp

+4

Ummmm ... 'Range (" A1 "). Value =" customerid "' и т. Д.? – Comintern

ответ

1

Рассмотрим:

Sub whatever() 
    Range("A1:C1").Value = Array("customerid", "date", "prediction") 
End Sub 
Смежные вопросы