Flawed Macro

N

Nathan Bell

All,

Any assistance on this problem would be greatly appreciated. I have an
issue with a macro that I am running. The macro does the following:

Sub Button_B_Click()
'
' Button_B_Click Macro
' Macro recorded 9/12/2002 by Nathan Bell
'
'
Range("BNewTask").Select
Selection.EntireRow.Insert
Selection.FillDown
Selection.ClearContents
Range("BSecNum").Select
Selection.DataSeries Rowcol:=xlColumns, Type:=xlLinear, Date:=xlDay, _
Trend:=False
End Sub

However I have a cell in colum AH (it has a formula in it that I do not want
to delete) that I do not want the contents of it cleared. Is there any way
to easily do this without having to redefine ranges etc?

Regards,

Nathan
 
J

Jim Cone

Nathan,
Go at it from another direction...

Dim varCell as Variant
varCell = Range("AH10").Formula

'your code

Range("AH10").Formula = varCell

Regards,
Jim Cone
San Francisco, CA
 
Top