Convert price to fractional notation
=DOLLARFR(decimal_dollar, fraction)
| Parameter | Description |
|---|---|
decimal_dollar |
Pricing as a normal decimal number. |
fraction |
The denominator in the fractional unit. 8 = 1/8, 16 = 1/16, 32 = 1/32, etc. |
For example, to convert the price "1 and 1/16" to decimal notation for pricing given to the nearest 1/16, you can use the DOLLARFR function like this:
=DOLLARFR(1.0625,16) // returns 1.01
In the example shown, the formula column E, copied down, is:
=DOLLARFR(C6,D6)