Flawed Macro

  • Thread starter Thread starter Nathan Bell
  • Start date Start date
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top