---
title: "getRow"
canonical: "https://support.appfire.com/space/PSJ/15487253/getRow"
format: markdown
---
> Macro (aura-html)


> ℹ️ **Availability**
> ℹ️ 
> ℹ️ This function is available starting with
> ℹ️ 
> ℹ️ 1. **databasecf 2.1**
> ℹ️ 2. <span style="color: #091e42">**SIL Engine™**</span>** 2.0.3**

## Syntax

**<span style="color: #3366ff">getRow(tableField, rowIndex)</span>**

## Description

> Macro (excerpt)
> 
> Retrieves data in the row at the specified index from a data table custom field.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| tableField | array | Yes | Value of the data table custom field |
| rowIndex | number | Yes | Index of the row to be retrieved |

## Return Type

**string[]**

## Example

![image](media://57c1a4f0-5181-4835-afdf-c216da792331)

```
string[] adminDetails = getRow(customfield_10001, 0);
```

For the **Developers** custom field with the **customfield_10001 **id, the result returned by the above function call will be:   
**admin|admin@localhost|admin**.

# See also

- [getColumn](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/15487223)
- [getHeaders](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/15488024)
- [getTableElement](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/15481990)