Jul 15, 2024
CONVERT
function in Excel.VLOOKUP
combined with CONVERT
.=CONVERT(number, from_unit, to_unit)
CONVERT(1, "gal", "ltr")
→ 1 gallon = 3.7854 litersROUND
function for cleaner results.=CONVERT(80, "F", "C")
=CONVERT(80, "f", "c")
results in an error.hP
).=CONVERT(10, "lbm", "kg")
k
for kilo).k
), mega (M
), giga (G
), etc.=CONVERT(10, "bit", "byte")
→ 10 bits = 1.25 bytesVLOOKUP
and CONVERT
functions.=CONVERT(VLOOKUP(value, table, index, FALSE), "mi", "km")
LEFT
function.RIGHT
function.IF
statement and the CONVERT
function.
=IF(unit="km", value, CONVERT(value, "mi", "km"))
NUMBERVALUE
function.CONVERT
function.VLOOKUP
with measurement conversions.