CONVERT
The CONVERT
function in Google Sheets is a powerful tool that allows you to convert a numeric value from one unit of measure to another. Whether you're converting lengths, weights, temperatures, or any other units, the CONVERT
function simplifies the task. Read on to learn how to use this function effectively.
Function Syntax and Parameters
Syntax: CONVERT(value, start_unit, end_unit)
Parameters:
value
: The numeric value that you want to convert.start_unit
: The unit of measure that thevalue
is currently in.end_unit
: The unit of measure that you want to convert thevalue
to.
Step-by-Step Tutorial
- Converting a value from one unit to another:
- Example:
=CONVERT(10, "m", "ft")
- Result: The value
10
meters will be converted to feet.
- Example:
Use Cases and Scenarios
- Metric to Imperial Conversion: Convert metric measurements (meters, kilograms) to imperial units (feet, pounds).
- Temperature Conversion: Convert temperatures from Fahrenheit to Celsius or vice versa.
- Currency Conversion: Convert currency values from one currency to another.
Related Functions
UNITCONVERT
: A more powerful function for unit conversion which allows you to specify unit conversion factors.