# PCT

The PCT function is used to do a percentage calculation.

## Syntax

```javascript
pct(value)
```

## Arguments

value – The percentage in number format. This is a required argument.

## Example

```javascript
SALES + Pct(10) = SALES + 10%
```

Returns the current sales value plus 10% of sales
