I have a field that contains people’s heights in centimeters. I’d like to create an additional field that converts those heights to feet and inches, specifically using the format #’#".
The conversion part is easy; to get from centimeters to inches, you simply divide by 2.54, after which I’d want to round to the nearest inch. It’s the formatting part that I’m hung up on.
For example, 175 centimeters converts to 69 inches, rounded to the nearest inch. But how do I force 69 inches to display instead as 5’9"?
Thanks in advance for any help here!



Then, you'll want a formula that divides by 12 to figure out how many feet and rounds down to the nearest foot.
Then, you'll want a formula that adds the single quote for use in the final formula that formats the height in the desired way
Then, you'll want to calculate the inches in the desired format by subtracting the number of feet times 12 from the total number inches, and round this to the closest whole number.