Best way to convert data from an unknown unit (cm OR inches) ?
I need to fill in two columns in a table, one for length in inches, one for length in cm. I know how to use the conversion function, but my problem is this: sometimes I am given the data in cm, sometimes it's in in - so I can't just have one column convert from the other. Can anyone suggest the best way to handle this?
Just to help clarify, I have something like this:
Length IN | Length CM
5 | -
- | 8
2 | -
7 | -
- | 10
etc...
and need to fill in the missing data.