- My Forums
- Tiger Rant
- LSU Recruiting
- SEC Rant
- Saints Talk
- Pelicans Talk
- More Sports Board
- Fantasy Sports
- Golf Board
- Soccer Board
- O-T Lounge
- Tech Board
- Home/Garden Board
- Outdoor Board
- Health/Fitness Board
- Movie/TV Board
- Book Board
- Music Board
- Political Talk
- Money Talk
- Fark Board
- Gaming Board
- Travel Board
- Food/Drink Board
- Ticket Exchange
- TD Help Board
Customize My Forums- View All Forums
- Show Left Links
- Topic Sort Options
- Trending Topics
- Recent Topics
- Active Topics
Started By
Message
Excel formula help
Posted on 8/26/26 at 10:41 am
Posted on 8/26/26 at 10:41 am
I'm creating a spread sheet with dimensions that are being converted from decimals to fractions to be used as a chart for guys in the field.
So I need all of the fractions to be in a form that an idiot with a tape measure can use.
the default fraction feature gives you answers like 22/25
if you set it to 16th, you get answers like 6/16
how can I get excel to do the calculations where the answer will be in reduced down to 1/16ths, 1/8ths, 1/4ths, 1/2's etc.?
So I need all of the fractions to be in a form that an idiot with a tape measure can use.
the default fraction feature gives you answers like 22/25
if you set it to 16th, you get answers like 6/16
how can I get excel to do the calculations where the answer will be in reduced down to 1/16ths, 1/8ths, 1/4ths, 1/2's etc.?
Posted on 8/26/26 at 10:45 am to Nutriaitch
From Gemini A.I.
Step 1: Force the math to round to the nearest 1/16th
Instead of just typing your formula or referencing a cell, wrap your calculation in the MROUND function. This forces Excel to lock the decimal to a perfect 1/16th increment before it even tries to display it as a fraction.
If your decimal is in cell A1, use this formula:
=MROUND(A1, 1/16)
(Note: If you are doing math inside the cell, just replace A1 with your formula, like =MROUND(A1*B2, 1/16))
Step 2: Apply the "Up to two digits" format
Because you've mathematically forced the number to be an exact 16th, you can now safely use Excel's default fraction reducer without it accidentally spitting out a 1/5 or a 1/7.
1.Select the cells with your new formula.
2.Hit Ctrl + 1 (or right-click and select Format Cells).
3.Go to the Number tab and select Fraction.
4.Choose Up to two digits (21/25).
Hope it works
Step 1: Force the math to round to the nearest 1/16th
Instead of just typing your formula or referencing a cell, wrap your calculation in the MROUND function. This forces Excel to lock the decimal to a perfect 1/16th increment before it even tries to display it as a fraction.
If your decimal is in cell A1, use this formula:
=MROUND(A1, 1/16)
(Note: If you are doing math inside the cell, just replace A1 with your formula, like =MROUND(A1*B2, 1/16))
Step 2: Apply the "Up to two digits" format
Because you've mathematically forced the number to be an exact 16th, you can now safely use Excel's default fraction reducer without it accidentally spitting out a 1/5 or a 1/7.
1.Select the cells with your new formula.
2.Hit Ctrl + 1 (or right-click and select Format Cells).
3.Go to the Number tab and select Fraction.
4.Choose Up to two digits (21/25).
Hope it works
This post was edited on 8/26/26 at 10:46 am
Posted on 8/26/26 at 3:04 pm to onepiecemayne
Why not just have AI build it and offer up suggestions to improve it? This was a two minute one shot, so don't critique me too much.
https://field-fractions.pages.dev/
https://field-fractions.pages.dev/
This post was edited on 8/26/26 at 3:11 pm
Posted on 8/26/26 at 4:54 pm to Nutriaitch
This will give you a text string to the closest 1/32, 1/16, 1/8, 1/4, or 1/2 for a number, in this case, in cell F60. Just copy the whole thing and paste it in. You can do a search and replace to replace F60 with whatever cell you want to point it at. For a fraction less than 1 it will give you 0 1/32 etc. If you want to eliminate 32nds I can help you with that as well.
=IF(ISODD(ROUND((F60-TRUNC(F60))*32,0)),CONCAT(TRUNC(F60)," ",ROUND((F60-TRUNC(F60))*32,0),"/32"),IF(ISODD(ROUND((F60-TRUNC(F60))*16,0)),CONCAT(TRUNC(F60)," ",ROUND((F60-TRUNC(F60))*16,0),"/16"),IF(ISODD(ROUND((F60-TRUNC(F60))*8,0)),CONCAT(TRUNC(F60)," ",ROUND((F60-TRUNC(F60))*8,0),"/8"),IF(ISODD(ROUND((F60-TRUNC(F60))*4,0)),CONCAT(TRUNC(F60)," ",ROUND((F60-TRUNC(F60))*4,0),"/4"),CONCAT(TRUNC(F60)," ",ROUND((F60-TRUNC(F60))*2,0),"/2")))))
=IF(ISODD(ROUND((F60-TRUNC(F60))*32,0)),CONCAT(TRUNC(F60)," ",ROUND((F60-TRUNC(F60))*32,0),"/32"),IF(ISODD(ROUND((F60-TRUNC(F60))*16,0)),CONCAT(TRUNC(F60)," ",ROUND((F60-TRUNC(F60))*16,0),"/16"),IF(ISODD(ROUND((F60-TRUNC(F60))*8,0)),CONCAT(TRUNC(F60)," ",ROUND((F60-TRUNC(F60))*8,0),"/8"),IF(ISODD(ROUND((F60-TRUNC(F60))*4,0)),CONCAT(TRUNC(F60)," ",ROUND((F60-TRUNC(F60))*4,0),"/4"),CONCAT(TRUNC(F60)," ",ROUND((F60-TRUNC(F60))*2,0),"/2")))))
Popular
Back to top

2






