# Any

### **Description**‌

The Any function returns a truth (Boolean) value indicating whether the table has any rows.

### **Syntax**

‌The syntax for the Any function is:

`Any(table)`

#### ‌**Parameters**

table - the table to check for rows.

### **Returns**

‌The Any function returns True or False.

### **Example**‌

Let's look at some Any function examples and explore how to use the Any function.‌

<div align="left"><img src="https://529897662-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LtPTgZOYmpJka4jqs1v%2F-MZmc2hwNmUAnYJ4xByD%2F-MZqLDM_GZhrbVH2wLFi%2Fcolors.jpg?alt=media&#x26;token=6c6e94b4-4c75-454c-94b6-3f5a93d0e473" alt="Example table: colors"></div>

<div align="left"><img src="https://529897662-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LtPTgZOYmpJka4jqs1v%2F-MZqMVgzQTMo2azo686l%2F-MZqN_YWPnf6yPcBTTIB%2Fany.jpg?alt=media&#x26;token=37ac393b-1207-4dc2-a48f-2ee1ea66063f" alt="ANY function in assignment step"></div>

```
Any(colors)
Result: True

Any([col: "A"] & [col: "B"])
Result: True
```
