0

我正在使用 Excel 宏将一些数据从 Access 复制到 Excel。它工作正常,只是在此过程中更改了某些列格式。填写工作表的代码部分是

ActiveSheet.UsedRange.Clear
'Add the data (note blank line between headers & data
Cells(Crow + 2, CColumn).CopyFromRecordset RS
'Add the field headers
For Each Item In RS.Fields
    Cells(Crow, CColumn) = Item.Name
    CColumn = CColumn + 1
    Next Item

哪个正在改变格式 - 第一行中的 Clear 命令,还是 CopyFromRecordset?如何保留单元格格式?

4

1 回答 1

2

也许使用 ClearContents 而不是 Clear

于 2013-06-05T21:30:26.833 回答