ID EN
#Financial

DOLLARFR

Excel Functions

Convert price to fractional notation

Syntax

EXCEL
=DOLLARFR(decimal_dollar, fraction)

Arguments

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.

Return Value

Dollar value in fractional notation

Details

The Excel DOLLARFR function converts a dollar price in a regular decimal number format to a dollar price in a particular fractional notation used for securities where pricing is given to the nearest 1/8, 1/16, 1/32, etc. The DOLLARDE function does the opposite conversion. 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: Notice the first argument is a normal decimal value. The second argument is used to indicate the denominator of the fractional multiple to use for the conversion, i.e. 8 = 1/8, 16 = 1/16, 32 = 1/32, etc. In the example shown, the formula column E, copied down, is: On each row, the DOLLARDE function picks up the decimal value from column C and the fraction denominator from c

Examples

Example 1

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:

EXCEL
=DOLLARFR(1.0625,16) // returns 1.01
Example 2

In the example shown, the formula column E, copied down, is:

EXCEL
=DOLLARFR(C6,D6)

See Also

DOLLARDE