This project is a UiPath tools library.
C#
- File_ReadExcelToTable
- File_ReadWorkbookToTable
This workflow reads a worksheet in a Microsoft Excel document by using the Excel activities and returns a data table.
- String in_FilePath - The file path to the Microsoft Excel document.
- String in_Worksheet - The worksheet name.
- Boolean in_WorksheetHasHeaders - If the worrksheet has a header row.
- String in_WorksheetRange
- DataTable out_Dt_Data
Type | Argument | Annotation |
---|---|---|
String | in_FilePath | The file path to the Microsoft Excel document. |
String | in_Worksheet | The worksheet name. |
Boolean | in_WorksheetHasHeaders | If the worrksheet has a header row. |
String | in_WorksheetRange | The range of the worksheet. The entire sheet will be read if the worksheet range is blank. |
DataTable | out_Dt_Data | The data table containing the worksheet data. |