Changing Cell number format Automatically

Einstein2000

New Member
Joined
Aug 12, 2011
Messages
2
Hi

I have a need to be able to change the number of decimal places on a cell when I change a value in another cell.

For example, in cell A1, I will have a drop down box showing 0.0, 0.00, 0.000 or 0.0000.

Depending on which drop down the user selects, I would like cell A2 to change its cell resolution.

Any help would be greatly appreciated.

Simon
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Right click the name tab at the bottom of the worksheet you want to have this functionality and select "View Code" from the popup menu that appears, then copy/past the following into the code window that opened up...

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
  If Not Intersect(Target, Range("A1")) Is Nothing Then
    Target.Offset(1).NumberFormat = Target.Value
  End If
End Sub
Make sure your cell (A1 in this case) is formatted as Text so that it will retain the trailing zeroes.
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,383
Members
448,956
Latest member
JPav

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