|
|||||||||||||||
TransferSpreadsheet Method [Access 2003 VBA Language Reference]
Время создания: 16.03.2019 23:43
Текстовые метки: access, Import
Раздел: Разные закладки - VBA - Access - Link
Запись: xintrea/mytetra_db_adgaver_new/master/base/1513767919kkau8h2ueo/text.html на raw.githubusercontent.com
|
|||||||||||||||
|
|||||||||||||||
TransferSpreadsheet Method [Access 2003 VBA Language Reference] The TransferSpreadsheet method carries out the TransferSpreadsheet action in Visual Basic. expression.TransferSpreadsheet(TransferType, SpreadsheetType, TableName, FileName, HasFieldNames, Range, UseOA) expression Required. An expression that returns one of the objects in the Applies To list. AcDataTransferType
AcSpreadSheetType
TableName Optional Variant. A string expression that's the name of the Microsoft Access table you want to import spreadsheet data into, export spreadsheet data from, or link spreadsheet data to, or the Microsoft Access select query whose results you want to export to a spreadsheet. FileName Optional Variant. A string expression that's the file name and path of the spreadsheet you want to import from, export to, or link to. HasFieldNames Optional Variant. Use True (–1) to use the first row of the spreadsheet as field names when importing or linking. Use False (0) to treat the first row of the spreadsheet as normal data. If you leave this argument blank, the default (False) is assumed. When you export Microsoft Access table or select query data to a spreadsheet, the field names are inserted into the first row of the spreadsheet no matter what you enter for this argument. Range Optional Variant. A string expression that's a valid range of cells or the name of a range in the spreadsheet. This argument applies only to importing. Leave this argument blank to import the entire spreadsheet. When you export to a spreadsheet, you must leave this argument blank. If you enter a range, the export will fail. UseOA Optional Variant. This argument is not supported. Remarks For more information on how the action and its arguments work, see the action topic. You can leave an optional argument blank in the middle of the syntax, but you must include the argument's comma. If you leave a trailing argument blank, don't use a comma following the last argument you specify. Note You can also use ActiveX Data Objects (ADO) to create a link by using the ActiveConnection property for the Recordset object. The following example imports the data from the specified range of the Lotus spreadsheet Newemps.wk3 into the Microsoft Access Employees table. It uses the first row of the spreadsheet as field names. DoCmd.TransferSpreadsheet acImport, 3, _ "Employees","C:\Lotus\Newemps.wk3", True, "A1:G12"
|
|||||||||||||||
Так же в этом разделе:
|
|||||||||||||||
|
|||||||||||||||
|