> For the complete documentation index, see [llms.txt](https://docs.roboteasy.tech/studio-en/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.roboteasy.tech/studio-en/studio/iniciar-um-projeto/projeto-com-parametros-excel.md).

# Project with Excel Parameters

## Example of a project that receives an initial parameter of type Excel

![](/files/-MYB04n-AVn60jCWNNzx)

As pictured above, a spreadsheet in which the first column stands for a code and the second for an individual's name has been set.

When the spreadsheet is entered as the initial parameter, it will be available as follows during robot execution:

```javascript
[
  [
    123457,
    "Smith"
  ],
  [
    123458,
    "Michael"
  ],
  [
    123459,
    "Mike"
  ],
  [
    123450,
    "Julia"
  ]
]
```

From this you can use the Free Loop object to get every row in this list, for example:

**1 - Add new project:**

![](/files/-MYB9JJOSxX-vcv_820r)

**2 - Next, include in the working area the Free Loop object and configure it as follows:**

![Condição (contador menor que a quantidade de linhas do array)](/files/-MYBBfrhONfWoBsZQvld)

To access the information you should use the concept of rows by columns, for example:

```javascript
// Buscará o código disponível na primeira coluna da planilha
Planilha[count][0]

// Buscará o nome disponível na segunda coluna da planilha
Planilha[count][1]
```

As per the image below, this approach was used to display the values for each row and column of the file.

![](/files/-MYBCcsqCylkCDNqobw-)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.roboteasy.tech/studio-en/studio/iniciar-um-projeto/projeto-com-parametros-excel.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
