Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

tobool()

Switch services using the Version drop-down list. Learn more about navigation.
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel

Convert inputs to boolean (signed 8-bit) representation.

The tobool() and toboolean() functions are equivalent

Note

When possible, use bool literals instead.

Syntax

tobool(value)

Learn more about syntax conventions.

Parameters

Name Type Required Description
value string ✔️ The value to convert to boolean.

Returns

If conversion is successful, result will be a boolean. If conversion isn't successful, result will be null.

Example

tobool("true") == true
tobool("false") == false
tobool(1) == true
tobool(123) == true

Related content


Feedback

Was this page helpful?

Additional resources