Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Sorry, that sounds really wierd, but what I want to do is this:
I have a data table of around 2000 rows and 16 columns. I want to have a 'Delete Selected Row' button. The idea is that the selected cell and the 15 to the right of it are cleared. I have the following code: ActiveCell.Value = "" ActiveCell.Offset(0, 1).Value = "" .... ActiveCell.Offset(0, 15).Value = "" Any cell in the table can be selected for amendment ,but how can I amend the Button's code so that it only works if the ActiveCell is in column B? Thanks in advance. Steve |
#2
![]() |
|||
|
|||
![]()
one way:
With ActiveCell If .Column = 2 Then .Resize(1, 15).ClearContents End With In article . com, "Steve" wrote: Sorry, that sounds really wierd, but what I want to do is this: I have a data table of around 2000 rows and 16 columns. I want to have a 'Delete Selected Row' button. The idea is that the selected cell and the 15 to the right of it are cleared. I have the following code: ActiveCell.Value = "" ActiveCell.Offset(0, 1).Value = "" ... ActiveCell.Offset(0, 15).Value = "" Any cell in the table can be selected for amendment ,but how can I amend the Button's code so that it only works if the ActiveCell is in column B? Thanks in advance. |
#3
![]() |
|||
|
|||
![]()
.... now you're just making this look easy.
That's perfect. Thanks a lot. S:) |
#4
![]() |
|||
|
|||
![]()
Maybe you could just use the row that the activecell is on???
cells(activecell.row,2).resize(1,15).clearcontents Just a thought. Steve wrote: ... now you're just making this look easy. That's perfect. Thanks a lot. S:) -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Circular Problem needs Macro | Excel Discussion (Misc queries) | |||
Zip Code Macro | Excel Worksheet Functions | |||
macro - adding rows to a column that is summed | Excel Discussion (Misc queries) | |||
Limiting the # of pages for Repeat Column Labels | Excel Discussion (Misc queries) | |||
Macro for Show/Hide Column | Excel Discussion (Misc queries) |