# Function rowInclude()

>**rowInclude**(table, colName, value, findFirst = true)
- Find if a string is included in a specific column
- **Return {string, array, undefined}** - If nothing find -> undefined; If findFirst -> string else return row[]
- See [Functions](../functions.md)

## Parameters

| Parameter |Type |Default |Description |
|  ---- | ---- | ---- | ---- |
**table** |object | |Table object |
**colName** |string | |Column name |
**value** |string | |value to search for |
**findFirst** |bool |true |if true, return the first positive |
