Studio
2020.10
false
Banner background image
OUT OF SUPPORT
Studio User Guide
Last updated Dec 20, 2023

Example of Using DataTable Variables

To exemplify how you can use DataTable variables, we are going to create an automation that reads only two out of multiple columns from an Excel spreadsheet, and then transfers them to another spreadsheet that already contains other information.

The initial file is a database of people, transactions, dates, and products. In this example, we are going to extract their names and order dates and append them to an Excel spreadsheet that already contains similar information.

  1. Create a new sequence.
  2. Add an Excel Application Scope activity to the sequence. This activity is required for most of the Excel-related activities.
    Note: If you do not have Excel activities installed on your version of UiPath, use the Manage Packages functionality to get them.
  3. Create two DataTable variables, NamesList and DateInfo. These are going to be used to store information from the initial Excel spreadsheet.
  4. In the Properties panel, in the WorkbookPath field, type the path of the initial Excel file to be used, between quotation marks.
  5. Add two Read Range activities and place them one under the other, in the Excel Application Scope activity. These are used to get information from the initial spreadsheet.
  6. Select the first Read Range activity and, in the Properties panel, in the Range field, type "G7:G37". These are the Excel table coordinates that tell UiPath Studio from where to extract information.
  7. In the SheetName field, do not make any changes as the name of our sheet is the default one, Orders.
  8. In the DataTable field, type the name of the first DataTable variable, NamesList. This variable stores all the information available between the G7 and G37 rows.
  9. (Optional) Change the value in DisplayName field to Read Names, so you can easily tell apart this activity from the second one.
  10. Select the second Read Range activity, and in the Properties panel, in the Range field, type "C7:C37". These are the Excel table coordinates that contain the order date we want to extract.
  11. In the DataTable field, specify the DateInfo variable. This variable retains all the date information we require.
  12. In the Activities panel, under System > File > Workbook, add a Write Range activity to the Designer panel, under the Excel Application Scope. This activity is used to write the stored information to another Excel file.
    Note: The file used with the Write Range activity has to be closed when you run the project. If it is not closed, an error is displayed and the automation execution stops.
  13. In the Properties panel, in the WorkbookPath field, type the path of the Excel file to be used to store all the information gathered at the previous steps.
  14. In the DataTable field, type the NamesList variable.
  15. In the SheetName field type Database, and in the StartingCell, type "B7.“ This is the starting cell in which information from the initial file is to be added.
  16. Add another Write Range activity and place it under the first one.
  17. In the Properties panel, fill in the WorkbookPath and SheetName fields as for the previous Write Range activity.
  18. In the Starting Cell field, type "A7".
  19. In the DataTable field, type the DateInfo variable.


  20. Press F5. Your automation is executed.
  21. Double-click the final Excel file. Note that the copied information is available, and correctly updated.


Was this page helpful?

Get The Help You Need
Learning RPA - Automation Courses
UiPath Community Forum
Uipath Logo White
Trust and Security
© 2005-2024 UiPath. All rights reserved.