Operation on a defined range

rachexcel

New Member
Joined
Feb 19, 2015
Messages
6
Hello,

I have a question about performing a mathematical operation on a range.

I have a defined range, say, range_1 containing a large number of values.

If I want to create a second range, 'range_2', which is just each value in range_1 + 5 (for example), how could I do this?

I just need to use the values temporarily in my VBA code so keeping them off the actual spreadsheet and completely in the code would be ideal.

Thanks,
Rach
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Something like:

Code:
Dim rng as range
set rng = Worksheets("sheet name").Range("range_1")

Dim newVals() as double

For x = 1 to rng.row 'I don't think this will work but I can't test right now
     ReDim Preserve newVals(x)
     newVals(x) = rng(x) + 5
Next x
 
Upvote 0

Forum statistics

Threads
1,216,129
Messages
6,129,047
Members
449,482
Latest member
al mugheen

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