VBA code : suggestion

ericvu23

New Member
Joined
Dec 19, 2010
Messages
17
Hi everyone,

I need some suggestions regarding my VBA code, indeed it has the purpose to copy and stick with the link my specified series.
However,the multiple series are displayed (with my VBA code) such as :

1
x
x
x
2
x
x
x

I would like them to be exhibited as follow :

1 2
x x
x x
x x

Here is my VBA code :

Dim n, i As Double

n = 26
For i = 1 To 99
n = 26 + (i - 1) * 21


Sheets("1-Weights").Select
Range("B" & n & ": B" & n + 20).Select
Application.CutCopyMode = False
Selection.Copy
Sheets("1-Plot").Select
Range("B" & n + 21).Select
ActiveSheet.Paste Link:=True

Next

End Sub

Does someone have any suggestion ? It will help me a lot ;).

Thanks in advance,

Eric,
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Shouldn't it be:
Code:
Range("B1").Offset(0,i-1).Select
before the Paste, instead of the current Select statement you have?
 
Upvote 0

Forum statistics

Threads
1,216,095
Messages
6,128,790
Members
449,468
Latest member
AGreen17

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