Formula (Extended): $FIND Function
## Overview
Search for the search string in the target string, and return the result by counting the position where the search string first appears from the left end. The search is case-sensitive. Wildcard characters cannot be used.
## Syntax
```
$FIND(Search String, Target String, [Start Position])
```
## Parameters
|Parameter|Type|Required|Description|
|:---|:---|:---|:---|
|Search String|Arbitrary String|Required||
|Target String|Arbitrary String|Required||
|Start Position|Half-width numerical value. Integer of 1 or more|Optional|Specify the position to start the search. Specify 1 to search from the first character of the "Target String". If omitted, 1 is assumed to be specified. |
### Column Usable as Parameters
|Parameter|Classification|Numerical Value|Date|Description|Check|
|:---|:---|:---|:---|:---|:---|
|Search String|Yes|Yes|Yes|Yes|No|
|Target String|Yes|Yes|Yes|Yes|No|
|[Start Position]|Yes|Yes|No|Yes|No|
## Return Value
Position where the search string first appears (integer 1 or greater).
An error occurs if the search string is not found.
An error occurs if the start position is greater than the number of characters in the target string.
### Return Value Display Content
|Target|Display Content of Return Value|
|:---|:---|
|Classification (including title, status, manager, owner)|Display return value. In the case of a dropdown list with values, the options that match the return value are displayed. |
|Numerical Value (including work volume, progression rate, remaining work volume)|Display return value |
|Date (including start and completion) |Do not display |
|Description (including content) |Display return value |
|Check (including lock) |Do not display |
## Usage Example ①
Specify parameters by screen column name (name displayed)
### Formula
![image](https://pleasanter.org/binaries/e2faceacd90b436daa291ce73821a8cb)
### Parameters
![image](https://pleasanter.org/binaries/55902e9c821246479fb9802888793a74)
### Calculation Result
![image](https://pleasanter.org/binaries/5ed67f0eab0342069e6fb605fcd906c2)
## Usage Example ②
Specify the parameter [Start Position]
### Calculation formula
![image](https://pleasanter.org/binaries/89bf58fec9344360a8c734f4c0f112f4)
### Parameters
![image](https://pleasanter.org/binaries/c1d977c3979546779a92b0a0fcfdc9ce)
### Calculation Result
![image](https://pleasanter.org/binaries/ba6311c5cf104295b07fcd876d92bada)