I am trying to format a spreadsheet to import into a Table. To do this I need to delete the top 8 rows and then the 4 rows below the data I need, both areas contain header data. The 4 rows below the data I need are blank but formatted oddly and it is causing issues during import. I'm a complete noob at VBA but so far I have
I'm trying to learn this as I go along, and have spent the past few hours reading forums and help sites but I'm not getting a grasp of what the different commands are. Any hints are appreciated.
Code:
Sub ExcelFormat()
Dim excelApp As Object
Set excelApp = CreateObject("Excel.Application")
excelApp.worbooks.Open ("Z:\Data\Test.xlsx")
End Sub
I'm trying to learn this as I go along, and have spent the past few hours reading forums and help sites but I'm not getting a grasp of what the different commands are. Any hints are appreciated.