Sep 18, 2003 #1 rjumelet Programmer Jul 5, 2002 5 NL In this command you can specify the worksheet and range of a excel file, has anyone a example of this ? Thanks in advance, Rob
In this command you can specify the worksheet and range of a excel file, has anyone a example of this ? Thanks in advance, Rob
Sep 18, 2003 #2 zevw MIS Jul 3, 2001 697 US DoCmd.TransferSpreadsheet , acSpreadsheetTypeExcel97, "TableName", "C:\Test.xls" Upvote 0 Downvote
Sep 18, 2003 #3 dhaveedh Programmer Aug 13, 2003 112 GB Try this, wrksheet.Cells(r,c) r = rows c = columns For c = 1 To 9 wrksheet.Cells(1, c).Font.Bold = True Next I used this to format 9columns of the first row in my worksheet to be the header of my transfer to a spreadsheet from access. Hope it helps. Upvote 0 Downvote
Try this, wrksheet.Cells(r,c) r = rows c = columns For c = 1 To 9 wrksheet.Cells(1, c).Font.Bold = True Next I used this to format 9columns of the first row in my worksheet to be the header of my transfer to a spreadsheet from access. Hope it helps.