0

我正在使用 vba 从 excel 查询一个 SQL db,一切正常,但它也返回并在 excel 表中显示 SQL 列标题。像这样:

AssetTag    Machine Name    UserName    Current Site    Run Count   Defered
AssetTag    MachineName     UserName    CurrentSite     RunCount    DeferCount
B33CWM1     QRLXPB33CWM1    admin-03         QR           255          3

有没有办法让 VBA 不显示 SQL 列标题?

4

1 回答 1

2

如果使用 ADO 创建记录集,则可以在 Excel 中使用 CopyFromRecordset。这不包括标题。

Worksheets("Sheet3").Cells(2, 1).CopyFromRecordset rs
于 2012-05-24T08:29:17.897 回答