![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: Feb 2002
Posts: 91
|
Code works but copys value stored where as i need it to copy the formulae present.Here is the code:
Sub Test() Dim CopyTimes As Integer Dim CopyLoop As Integer CopyTimes = Worksheets("sheet1").Range("A1").Value If CopyTimes <= 1 Then Exit Sub For CopyLoop = 1 To CopyTimes 'assume A2 has the data, B2 is the place to start storeing Worksheets("sheet1").Range("B" & CopyLoop + 1).Value = Worksheets("sheet1").Range("A2").Value Next CopyLoop End Sub |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Bogota, Colombia
Posts: 11,927
|
Change .Value to .Formula
Second, you don't need to use a Loop. Try with: Worksheets("sheet1").Range("B2").Resize(CopyTimes,1).Formula = Worksheets("sheet1").Range("A2").Formula |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|