Formula (Extended): $TEXT Function
## Overview
Convert to a string with the display format applied.
## Syntax
```
$TEXT(Value, Display Format)
```
## Parameters
|Parameter|Type|Required|Description|
|:---|:---|:---|:---|
|Value|Arbitrary String|Required||
|Display Format|[Format specification strings available in C#](https://learn.microsoft.com/ja-jp/dotnet/standard/base-types/formatting-types)|Required||
### Column Usable as Parameters
|Parameter|Classification|Numerical Value|Date|Description|Check|
|:---|:---|:---|:---|:---|:---|
|Value|Yes|Yes|Yes|Yes|No|
|Display Format|Yes|No|No|Yes|No|
## Return Value
A string with the display format is applied.
### Return Value Display Content
|Target|Display Content of Return Value|
|:---|:---|
|Classification (including title, status, manager, owner)|Display return value. If the return value is a half-width numerical value and is a drop-down list with values, the options that match the return value are displayed. |
|Numerical Value (including work volume, progression rate, and remaining work volume)|Display return value only if the return value is a half-width numerical value. |
|Date (including start and completion)|Display return value only if the return value is in date format. |
|Description (including content)|Display return value. |
|Check (including lock)|Do not display. |
## Usage Example ①
Display numerical values with digit separators
By specifying the display format of category A, NumA is converted to digit separators and output as the calculation result to category B.
### Calculation formula
![image](https://pleasanter.org/binaries/eee70f653ad14569848383f7b7d0cd38)
### Parameters
![image](https://pleasanter.org/binaries/27ab9d6de8d14920a547dfbf0f2201de)
### Calculation result
![image](https://pleasanter.org/binaries/4a7868d107e14d09b8f9bf1849c1ffae)
## Usage Example ②
Display numerical values as currency (JPY)
By specifying the display format of ClassA, the calculation result will be output to ClassB in the currency symbol + NumA with digit separators. Specify "\\" to escape "\".
### Formula
![image](https://pleasanter.org/binaries/5c87184bfcd04a2694ca4e80c155164b)
### Parameters
![image](https://pleasanter.org/binaries/7f91a2a8f98c45ee90e915bca211aa89)
### Calculation Result
![image](https://pleasanter.org/binaries/112c86f47f9e4025a298f1f201f12630)
## Usage Example ③
Display date as year, month, and Sunday
By specifying the display format for ClassA, DateA will be converted to year, month, and Sunday and output as the calculation result in ClassB.
### Formula
![image](https://pleasanter.org/binaries/6518aa21c4f34175a15ab1ac60bd065a)
### Parameters
![image](https://pleasanter.org/binaries/205aa4df8c49403a941118e1714b86f2)
### Calculation Result
![image](https://pleasanter.org/binaries/06d0fc064180481a9cabdd23079a2333)