# BITOR

## Content

This function calculates the bitwise OR of two specified numbers.

## Syntax

`BITOR(value1, value2)`

## Arguments

<span data-teams="true">This function has these arguments:</span>

| <span data-teams="true">Argument</span> | <span data-teams="true">Description</span> |
| -------- | ----------- |
| <span data-teams="true"> </span>*<span data-teams="true">value1</span>* | <span data-teams="true">[Required] First decimal number greater than or equal to 0</span> |
| <span data-teams="true"> </span>*<span data-teams="true">value2</span>* | <span data-teams="true">[Required] Second decimal number greater than or equal to 0</span> |

## Remarks

In this function, if value of any parameter's bits at same position is 1 only then the value of each bit position is counted.

## Examples

`BITOR(22,4)` gives the result 22.
`BITOR(6,3)` gives the result 7.