<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [mr-excel](./mr-excel.md) &gt; [extractExcelData](./mr-excel.extractexceldata.md)

## extractExcelData() function

Extracts data from an Excel file.

**Signature:**

```typescript
export declare function extractExcelData(uri: string, isBackend?: boolean, fetchFunc?: Function): Promise<DataModel.ReadResult>;
```

## Parameters

<table><thead><tr><th>

Parameter


</th><th>

Type


</th><th>

Description


</th></tr></thead>
<tbody><tr><td>

uri


</td><td>

string


</td><td>

The URI of the Excel file.


</td></tr>
<tr><td>

isBackend


</td><td>

boolean


</td><td>

_(Optional)_ Whether the extraction is done on the backend.


</td></tr>
<tr><td>

fetchFunc


</td><td>

Function


</td><td>

_(Optional)_ The function to fetch data.


</td></tr>
</tbody></table>

**Returns:**

Promise&lt;DataModel.ReadResult&gt;

{<!-- -->Promise<!-- -->&lt;<!-- -->DataModel.ReadResult<!-- -->&gt;<!-- -->} The extracted data.

