• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Convert to currency format in excel formula

madocar

Member
Hi,

please is there any way how to convert
number format (1 345)
to
currency format ($1 345)
by using a formula?

I tried this formula
Code:
=TEXT(B4,"[$$-C09]# ##0")
but finally it happened to be a text string.

Thanks for any help
 
Hi,

Why not just use:
"=B4"

and format the cell to currency :)

or if you must use formula...
=DOLLAR(B4, 2)
 
Last edited:
Maybe......

Format the cell to Currency >> in the Symbol box, choose "$ English (Australia)" from the dropdown list.

or

Format the cell to Custom >> in the Type box, enter: [$$-C09]# ##0

Regards
Bosco
 
It must be the formula.

I come from EU so formula
Code:
=DOLLAR(B4, 2)
gives me EUR sign instead of dollar sign.
 
Hi,

In the currency cell right click > format cells >Number tab > Currency>Symbol change to euro....
 
Once again please, it must be the formula.

I know how to format the currency by clicking on the cell >format cells ...

Thanks
 
Back
Top