Reputation: 11
I'm creating a simple table which has one of the columns displaying fractions and the other column displaying its equivalent decimal value. However since I'm not experienced with excel such a small task proves to be quite difficult for me.
For example I have 1/16 in one column and 0.0625 in the other. I can only get it to display what's in the fraction column 1 through =INDIRECT(ADDRESS(ROW(),1)), but it refuses to do the math, when I force it using VALUE it coverts it into a date!
Also, how do I add increments to the first row so that the next row has the related increment multiple added to the initial value?
Thank you so much!
Upvotes: 1
Views: 446
Reputation: 60199
No matter how it is displayed, Excel stores numeric values as numbers (and decimals), not as fractions.
But when you enter 1/16
into a cell, Excel will convert that to a date.
Perhaps you can
.0625
into A11/16
if you want 16ths)=A1
(formatted as General
)=A1 + 0.0625
=A2
Then select A2
and fill down; then B1
and fill down
If you prefer to have simplified fractions, you can use the same setup as above, but merely change the format in column A to ??/??
.
If you might be using a different formula to generate the values (one that does not generate values as close to 16th's as this one), but you want to see it simplified to the nearest 16th, then you should round the results of that formula to the nearest 16th
=MROUND(your_formula,1/16)
Upvotes: 2