DOLLARFR

Convert decimal dollar prices to fractional notation with DOLLARFR. Essential for bond pricing, securities trading, and financial reporting systems.

ExcelExcel
Google SheetsGoogle Sheets
financial
intermediate
Syntax Preview
ExcelExcelGoogle SheetsGoogle Sheets
=DOLLARFR(decimal_dollar, fraction)
Understanding the DOLLARFR Function

Practical Examples

Basic Price Conversion to Eighths

Convert a decimal price to fractional notation using eighths

Result: 1.1

Bond Price Conversion to Thirty-Seconds

Convert a bond price from decimal to fractional notation using thirty-seconds

Result: 1.25

Treasury Bill Pricing

Convert decimal treasury bill price to fractional format

Result: 99.13

Stock Price in Sixteenths

Convert stock price to traditional fractional notation using sixteenths

Result: 125.5

Using Cell References for Dynamic Conversion

Convert prices dynamically using cell references

Result: Variable based on inputs

Error Handling with IFERROR

Prevent errors from invalid fraction denominators

Result: Either converted value or error message

Common Errors and Solutions

#NUM! Error

DOLLARFR returns #NUM! error

Cause:

Fraction parameter is less than 0 or decimal_dollar is negative

Solution:

Ensure both parameters are positive numbers and fraction is a valid integer. Common fraction values are 2, 4, 8, 16, 32, 64, 128, or 256.

Prevention:

Validate input data before applying the formula using conditional logic or data validation

Example:

#VALUE! Error

DOLLARFR returns #VALUE! error

Cause:

One or both parameters are non-numeric values

Solution:

Check that decimal_dollar and fraction contain valid numeric values, not text strings or empty cells.

Prevention:

Use data validation or ISNUMBER checks on input cells before calculation

Example:

#DIV/0! Error

DOLLARFR returns #DIV/0! error

Cause:

Fraction parameter is zero

Solution:

Ensure fraction is a positive integer (typically 2, 4, 8, 16, 32, etc.). Cannot divide by zero.

Prevention:

Add conditional logic to check fraction > 0 before calculation, or use IFERROR wrapper

Example:

Best Practices and Pro Tips

Use Standard Fraction Denominators

In financial markets, stick to standard denominators: 8, 16, 32, or 64. These are industry conventions. Bonds typically use 32nds, while some use 64ths for greater precision. Using non-standard denominators may confuse other financial professionals.

Document the Fraction Convention

Always clearly label which fraction denominator you're using in your spreadsheet. Add column headers like 'Price (32nds)' or include notes. This prevents confusion and calculation errors when others use your workbook.

Combine with DOLLARDE for Verification

Use DOLLARDE to verify your DOLLARFR conversions. Apply DOLLARFR, then apply DOLLARDE with the same denominator - you should get back your original decimal value. This round-trip validation ensures accuracy.

Performance with Large Datasets

DOLLARFR is computationally efficient and handles large datasets well. When converting thousands of prices, consider using array formulas or Excel's dynamic array features for better performance and cleaner formulas.

Formatting Display Results

The output of DOLLARFR can be confusing without proper formatting. Consider adding custom number formatting or explanatory text to make it clear that 1.25 means 1 and 25/32, not 1.25 decimal dollars.

Use Cases and Applications
Related Formulas and Next Steps

Need Help with DOLLARFR?

Stop struggling with formula syntax. Use AskFormulas to generate validated formulas instantly with our AI-powered tool.

Example Excel formula:

Related Formulas

DOLLARDE

Convert fractional dollar prices to decimals with DOLLARDE. Essential for bond trading, stock quotes, and financial analysis.

intermediate
financial
ExcelExcel
Google SheetsSheets
Validated
FV Function in Excel

The FV function calculates future value of investments with constant payments and interest rate. Master retirement planning and savings goals with examples.

intermediate
financial
ExcelExcel
Google SheetsSheets
Validated
PV Function in Excel

The PV function calculates the present value of an investment or loan with constant periodic payments and a constant interest rate. Master PV with examples,...

intermediate
financial
ExcelExcel
Google SheetsSheets
Validated
ROUND Function in Excel

Master the ROUND function to round numbers to specified decimal places with practical examples and error solutions for Excel and Google Sheets.

beginner
math
ExcelExcel
Google SheetsSheets
Validated