# Eval

### D**escription**‌

> It is recommended to always use Eval for table operations in large datasets for better performance.

The Eval function in [FlowScript ](/development/flowscript.md)is used to force the evaluation of a [table](/development/flowscript/table.md) expression.\
\
We recommend always using Eval() when dealing with large datasets. It is particularly useful when you need to pre-process or filter data in a table and plan to reuse this processed data later in your script. \
\
Eval essentially pre-calculates and stores the results of your table query, making your script more efficient by preventing the need to recompute the same data.&#x20;

### **Syntax**

‌The syntax for the Eval function is:

`Eval(table where x < 0)`

#### ‌**Parameters**

table - the table on which the query is to be performed.

### **Returns**

‌The Eval function returns a new table.


---

# Agent Instructions: 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://help.novacuraflow.com/development/flowscript/table/x-eval.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.
