Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
BITOR performs a bitwise OR operation on two non-negative decimal integers, returning a new integer where each bit is 1 if at least one of the corresponding bits in either operand is 1. Use it to combine permission bits, feature flags, or any scenario where you need to set multiple independent bits.
=BITOR(12,10)=BITOR(12,10)Computed by a real spreadsheet engine on the sample data below.
| Number1 | Number2 | BITOR Result |
| 12 | 10 | =BITOR(12,10) |
| 7 | 8 | =BITOR(7,8) |
| 3 | 12 | =BITOR(3,12) |
| 0 | 255 | =BITOR(0,255) |
=BITOR(12,10)→14
Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
Need a version for your data?
Try: “Combine two permission bitmasks so all flags from both are active”
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: