Description
The DOLLAR Function converts a number to text format and applies a currency symbol. The name of the function (and the symbol that it applies) depends upon your language settings.
This function converts a number to text using currency format, with the decimals rounded to the specified place. The format used is $#,##0.00_);($#,##0.00)
.
Syntax
DOLLAR(number, [decimals])
Parameters
Number Required. A number, a reference to a cell containing a number, or a formula that evaluates to a number.
Decimals Optional. The number of digits to the right of the decimal point. If decimals is negative, number is rounded to the left of the decimal point. If you omit decimals, it is assumed to be 2.
Remarks
The major difference between formatting a cell that contains a number by using a command (On the Home tab, in the Number group, click the arrow next to Number, and then click Number.) and formatting a number directly with the DOLLAR function is that DOLLAR converts its result to text. A number formatted with the Format Cells dialog box is still a number. You can continue to use numbers formatted with DOLLAR in formulas, because Microsoft Excel converts numbers entered as text values to numbers when it calculates.
Examples
The example may be easier to understand if you copy the example data (include header) in the following table, and paste it in cell A1 of a new Excel worksheet. If you need to, you can adjust the column widths to see all the data.
Formula | Result | Description |
---|---|---|
=DOLLAR(9459.567,2) |
$9,459.57 | Displays the number in a currency format, 2 digits to the right of the decimal point. |
=DOLLAR(9459.567,-2) |
$9,500 | Displays the number in a currency format, 2 digits to the left of the decimal point. |
=DOLLAR(-9459.567,-2) |
($9,500) | Displays the number in a currency format, 2 digits to the left of the decimal point. |
=DOLLAR(-0.999,4) |
($0.9990) | Displays the number in a currency format, 4 digits to the right of the decimal point. |
=DOLLAR(1.987) |
$1.99 | Displays the number in a currency format, 2 digit to the left of the decimal point. |