Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Converts a force value from one unit to another.
Syntax
convert_force(value,from,to)
Learn more about syntax conventions.
Parameters
| Name | Type | Required | Description | 
|---|---|---|---|
| value | real | ✔️ | The value to be converted. | 
| from | string | ✔️ | The unit to convert from. For possible values, see Conversion units. | 
| to | string | ✔️ | The unit to convert to. For possible values, see Conversion units. | 
Conversion units
- Decanewton
- Dyn
- KilogramForce
- Kilonewton
- KiloPond
- KilopoundForce
- Meganewton
- Micronewton
- Millinewton
- Newton
- OunceForce
- Poundal
- PoundForce
- ShortTonForce
- TonneForce
Returns
Returns the input value converted from one force unit to another. Invalid units return null.
Examples
The following example demonstrates how to use the convert_force() function.
print result = convert_force(1.2, 'Newton', 'Decanewton')
Output
| result | 
|---|
| 0.12 |