Is there a way to change all currency formatting?

Swillis324

New Member
Joined
Apr 24, 2004
Messages
1
is there a way to change all currency formatting to general formatting at the same time. This is a prep-test Certiport has and I can't figure it out to saver my soul
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Welcome to the Board!

If your entire sheet is currency formatted then, CTRL+A, CTRL+1-->General will work. Or you can select multiple, non-contiguous ranges with CTRL+Left Click. CTRL+SHIFT+1 will format as number, CTRL+SHIFT+$ as Currency, CTRL+SHIFT+% as Percentage.

Or here's an add-in that takes advantage of the Special Cells dialog:
http://www.downloadfast.com/details.php?did=7648

Hope that helps,

Smitty
 
Upvote 0
Hi Swillis324:

Welcome to MrExcel Board!

In addition to Smitty's contribution, you may also try the following macro ...
Code:
Sub y_1()
    For Each c In ActiveSheet.UsedRange
        If c.NumberFormat = "$#,##0.00" Then
           c.NumberFormat = "General"
        End If
    Next c
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,851
Messages
6,181,394
Members
453,034
Latest member
mikdadhussain

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top