This free Excel macro allows you to quickly and easily format a selection of cells in the Currency number format in Excel. This format allows you to display a number as a currency so that readers immediately know that a number is a currency and exactly what currency it is.
This macro is made to display a number in the U.S. dollar currency format but can be easily changed for any currency.
Sub Format_Cell_Currency_US_Dollar()
Selection.NumberFormat = "$#,##0.00"
End Sub