A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
this didn't work for me. i had 5.333 in a cell and with the custom format [>=1]"'#'0'";[>=0.0833]"'#'0";General the result was '#'0'
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am trying to get a custom format written so that a feet measurement can be 5.5 but display as 5'6" so that i can use it in calculations easier. As close as I have is
#' ?/12'']
which displays 2' 6/12''
is this even possible? it would certainty clean up my books.
Any help is appreciated.
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
this didn't work for me. i had 5.333 in a cell and with the custom format [>=1]"'#'0'";[>=0.0833]"'#'0";General the result was '#'0'
Because I was calculating a value in A2 with several decimal places I added a second ROUND function to your formula. Thanks for you help
=ROUNDDOWN(A2,0)&"'"&ROUND(MOD(A2,1),1)*12&""""
A2=11.06347903
B2=11'1.2"
Hello Janey,
You can use the following custom format:
[>=1]"'#'0'";[>=0.0833]"'#'0";General
Here's how it works:
Using this custom format, you can enter a value like 5.5 and it will be displayed as 5'6" in the cell. The format allows you to perform calculations easily while still displaying the measurement in feet and inches.
I hope this helps.
Kindest regards
Leon Pavesic
In this example
#' ?/12'']
which displays 2' 6/12''
I would the display to 2' 6"
I remember there was a format a few years ago which converted 2.5 [feet] into a display of 2' 6"
What was that format?