N
N! Xau
With this macro I try to copy data in columns B:M (12 months) and rows
3:8 (6 years)
into one column only, to then make a 1-serie graph. Data sample could
be this group archive, at the bottom of page:
http://groups.google.it/group/microsoft.public.excel/about
But I get errors.
Thanks for help.
DestinationRowID = 10
For RowID = 3 To 8
For ColID = B To M
Range((ColID) + CStr(RowID)).Select
Selection.Copy
Range("B" + CStr(DestinationRowID + 1)).Select
ActiveSheet.Paste
Application.CutCopyMode = False
Next
Next
3:8 (6 years)
into one column only, to then make a 1-serie graph. Data sample could
be this group archive, at the bottom of page:
http://groups.google.it/group/microsoft.public.excel/about
But I get errors.
Thanks for help.
DestinationRowID = 10
For RowID = 3 To 8
For ColID = B To M
Range((ColID) + CStr(RowID)).Select
Selection.Copy
Range("B" + CStr(DestinationRowID + 1)).Select
ActiveSheet.Paste
Application.CutCopyMode = False
Next
Next