Lav Excel fil
1/ Hvordan venstrestillet man en celle ?2/ Hvordan omdøber man den øverste række - dem der hedder "A", "B", osv
Set objExcel = CreateObject("excel.application")
Set objBook = objExcel.Workbooks.Add
Set objSheet = objBook.Worksheets.Item(1)
objExcel.Application.Visible = True
With objExcel.Application
.Cells(1, 1).ColumnWidth = 8
.Cells(1, 1).Font.Bold = True
.Cells(1, 1).Value = "1"
.Cells(1, 2).Value = "test"
End With