Rounding Question

kluitna

Board Regular
Joined
Mar 10, 2002
Messages
75
Here is my third try following is working code and works just fine. The problem is I want it to work on any worksheet.

Sub Macro2()

'
For i = 0 To 35
Dim Rnd As String
Rnd = Worksheets(2).Cells(16 + i, 9)
If Rnd = blank Then End
Worksheets(2).Cells(16 + i, 9).Select
ActiveCell.FormulaR1C1 = "=ROUND(RC[-2]*RC[-3],5)"

Next i
End Sub

Is there code for the current worksheet?

I am so close but yet so far.

Thanks in advance
Paul
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Hi,

Replace
Worksheets(2)

with
ActiveSheet

to have this work with the active sheet, whatever that is.

When you use Worksheets(2), you are explicitly referencing the second sheet in the workbook, so the code will always operate on that particular sheet.
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

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