Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
1.In the following code I want to incorporate a formula to read $A$8 for
24 in Offset(0, 24) In other words 24 will be in cell A8. I want the number to be variable to care of multiple posting for different conditions. Any assistance. Set CopyRng = _ Sheets("Sheet2").Range("DH29,DH30,DH31,DH32,DH33,D H34") Set DestRng = _ Sheets("SALES").Cells(65536, "D").End(xlUp).Offset(0, 24) i = 0 For Each cell In CopyRng DestRng.Offset(0, i).Value = cell i = i + 2 Next 2.I have the following code which copies 38 different cells to another 38 cells. Assistance required for a Loop formula only if a loop will complete the task faster than the current code. Range("DN27").Select Selection.Copy Range("DF3").Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False Application.CutCopyMode = False Range("DP4").Select Application.CutCopyMode = False Selection.Copy Range("DF4").Select ActiveSheet.Paste [ code repeated another 36 times] End Sub I do not know any VBA but have been able to put together some processes after perusing the many closely related questions and solutions. Next project to learn VBA. Thank you. -- Robert |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
the owner of posting should be able to delete the posting | Excel Discussion (Misc queries) | |||
Looping and String Variable | Excel Programming | |||
Looping to create Variable Names? | Excel Programming | |||
Code looping when it should not | Excel Programming | |||
Increment a variable while looping | Excel Programming |