Thread
:
Worksheet Change Method
View Single Post
#
1
Posted to microsoft.public.excel.programming
Don Guillett[_4_]
external usenet poster
Posts: 2,337
Worksheet Change Method
try this
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address < "$A$20" Then Exit Sub
Rows("" & Target + 1 & ":12").Delete
End Sub
--
Don Guillett
SalesAid Software
Granite Shoals, TX
"Michael" wrote in message
...
Hello all,
Is is possible to maniputlate the Worksheet_Change_Method
to alter the struture of a range of cells ?. I have a
range of cells containing data say range(A1:G15).
I have a variable cell (A20) that is adjustable by the
user by entering a value from 1-15.
Now if the user enters a value of say 8 IN (A20), I would
like to delete rows(A9-A15)in the range (A1:G15), and if
it is 4, then rows (A5-A15)etc.
I hope that makes some sense or is it even possible ?
I have looked through the archives for deleting and
inserting cells, but cannot find what I am looking for.
Any help would be appreciated,
Thanks,
Michael
Reply With Quote
Don Guillett[_4_]
View Public Profile
Find all posts by Don Guillett[_4_]