Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Could anyone point out where my formula copying is going bad on me? or is
there a much simpler way to accomplish this? Thanks very much ) ================================================ Private Sub copyFormulas(aws As Worksheet, aRow As Integer) 'move UP one row, move across range, if cell is a formula copy to aRow Dim rCurrent As Range On Error GoTo errhdl Set rCurrent = aws.Range(gcstrNameColumn & (aRow - 1)) Do Until rCurrent.Value = "" If rCurrent.HasFormula Then 'neither of these work... '========================= rCurrent.Copy (rCurrent.Offset(-1, 0)) 'rCurrent.Offset(-1, 0).Formula = rCurrent.Formula '==========================<<<< End If 'next column Set rCurrent = rCurrent.Offset(0, 1) Debug.Print rCurrent.Cells(1).Column Loop Exit Sub errhdl: Stop End Sub -- kent eilers |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
4th time lucky? | Excel Discussion (Misc queries) | |||
Counting Days between Accidents (Third time lucky?) | Excel Discussion (Misc queries) | |||
Lucky Draw | Excel Discussion (Misc queries) |