Get table Version 2 (Python)

Action group: Office


Description

The action returns cell values from the specified area of the page as a table.

Action icon

Settings of parameters

PropertyDescriptionTypeFilling exampleMandatory field
Parameters
ContextContext for working with a documentRobin.OpenTextDo c
Yes
Table numberThe number of the table in the document. The order starts from 1. The default value is 1Robin.Numeric
No
HeadingIf the value is «true», the table header will be inserted into the document along with its rows.Robin.BooleantrueNo
Remove duplicate headerIf the value is «true», indexes will be added to the same column names in the header of the resulting table. Numbering starts from 1.Robin.BooleantrueNo
Results
ResultResult tableRobin.DataTable

Special conditions of use

For the "With Header" parameter: 

From excel we get the table:

With this parameter enabled, the log will show "Columns: 3; rows: 2" because the first row of the taken area has become a header with the column names ‘No.’, ‘Title’, and ‘Tests’. These headers cannot be accessed as a row of data to read, but you can use the column names to access a specific cell or column (by actions from the "Tables" group). If the option is off, the log will show "Columns: 3; rows: 3", the column names in the header will be ‘1’, ‘2’ and ‘3’.

For the "Remove duplicate header" option

Example of use

Task

There is a file Book1.xlsx it is necessary to write values from row 1-4 of column A to the variable "Table", save and close the document. 

Solution

Use the actions "Open", "Get table", "Save".

Implementation

  1. Assemble a robot scheme consisting of actions:
  2. Set the parameter for the "Open" action. 
    In the "File path" field specify the path to the file Book1.xlsx

  3. Customize parameters for the "Retrieve table" action. 
    In the "Context" field specify the context created in step 1
    In the "Start cell row" field specify the value = 1.
    In the "End cell row" field specify the value = 4. 
    In the "Start cell column" field specify the value = A. 
    In the "End Cell Column" field, specify the value =A. 
    Specify in the "Result" field a variable of the "Table" type created in advance. 
  4. Set the parameter for the "Save" action. 
    Specify the context of the opened document in the Context field.

  5. Launch the robot using the "Start" button in the top panel.

Result

The program robot completed successfully.

Cell values from the specified area are written to the variable "Table".