Add Round Function to All Cells

rrrexcel

New Member
Joined
Sep 3, 2009
Messages
10
Is there a way to add the round function to the current formula in multiple cells at once? I have a worksheet that has many cells that are linked to another worksheet or workbook, and I need all of the cells to be rounded to 2 digits. Can I do this with a macro?
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Code:
Sub add_round()
Dim rng As Range
    For Each rng In Selection
        rng.Value = "=Round(" & Mid(rng.Formula, 2, 9999) & ",2)"
    Next rng
    
End Sub
Select all the cells you want to ammend and try that. PLEASE try it on a copy of your worksheet though :)
 
Upvote 0
Is there a way to add the round function to the current formula in multiple cells at once? I have a worksheet that has many cells that are linked to another worksheet or workbook, and I need all of the cells to be rounded to 2 digits. Can I do this with a macro?

This is a crude way I can think of:

If your formula is like this =SUM(A1:E1) (for simplicity's sake!)

1. Type a number 0 in a cell and copy it
2. Select all the formulas you want to add ROUND function to and use paste special (add) option "Add".
Te formula will look like =SUM(A1:E1)+0
3. Replace all "=" signs with a character of your choice that has less chance of being already present in those formulas like "=ROUND(" and then replace ")+0" to ",2)"
 
Upvote 0
Thank you for your quick responses. I just tried the solution from beedistinct, and that definitely works. I will also try the solution from jproffer. Thank you again, so much!
 
Upvote 0
Code:
Sub add_round()
Dim rng As Range
    For Each rng In Selection
        rng.Value = "=Round(" & Mid(rng.Formula, 2, 9999) & ",2)"
    Next rng
    
End Sub
Select all the cells you want to ammend and try that. PLEASE try it on a copy of your worksheet though :)


hi, just wanted to add my thanks to jproffer for this, in my case though it trimmed off the first digit of the number so i modified the code as follows (and i didn't want any decimals keeping):

Sub add_round()
Dim rng As Range
For Each rng In Selection
rng.Value = "=Round(" & rng.Value & ",0)"
Next rng
End Sub

Once the above was done I copied the whole lot and paste-special-values over the top to remove the "=round.." function..
 
Upvote 0

Forum statistics

Threads
1,215,480
Messages
6,125,050
Members
449,206
Latest member
Healthydogs

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