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
 

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

Similar Threads

Stop Loop 4
worksheet_change not working 1
MERGE CELL BY MACRO 4
Remove Identical words 0
PLEASE ANY BODY CAN CORRECT MY MACRO 1
CODE FOR SHEET MODULE 6
Auto run macro 1
MERGE ROW CELLS BY MACRO 2

Top