ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Excel VBA - Delete cell to right of cell (https://www.excelbanter.com/excel-programming/307847-excel-vba-delete-cell-right-cell.html)

MAYDAY

Excel VBA - Delete cell to right of cell
 
Hello,

I have a spreadsheet and in one column there are several values.
need a macro that will search column A and if a value exists, I wan
the contents in the cell to the right of that cell to be deleted.

Thanks in advance for the help

--
Message posted from http://www.ExcelForum.com


Tom Ogilvy

Excel VBA - Delete cell to right of cell
 
Assume the values are hard coded (not produced by formulas) I understood
you to want to clear regardless of the value, rather than for a specific
value. If the latter, post back.

if Application.CountA(columns(1)) < 0 then
set rng = Intersect(columns(1).SpecialCells(xlConstants).Ent ireRow, _
Columns(2))
rng.ClearContents
End if

--
Regards,
Tom Ogilvy


"MAYDAY " wrote in message
...
Hello,

I have a spreadsheet and in one column there are several values. I
need a macro that will search column A and if a value exists, I want
the contents in the cell to the right of that cell to be deleted.

Thanks in advance for the help.


---
Message posted from http://www.ExcelForum.com/




MAYDAY[_2_]

Excel VBA - Delete cell to right of cell
 
Thanks Tom,

I apologize for not being more clear. What I'm trying to do is this:

If there is a cell in column A that has a value of 'abc'(hard coded, n
formulas), I want the contents in the cell to the right to be deleted

--
Message posted from http://www.ExcelForum.com


Tom Ogilvy

Excel VBA - Delete cell to right of cell
 
dim rng as Range, cell as Range
if Application.CountA(columns(1)) < 0 then
set rng = Intersect(columns(1).SpecialCells(xlConstants).Ent ireRow, _
Columns(2))
for each cell in rng
if lcase(cell.Value) = "abc" then
cell.offset(0,1).ClearContents
end if
NExt
End if

--
Regards,
Tom Ogilvy


"MAYDAY " wrote in message
...
Thanks Tom,

I apologize for not being more clear. What I'm trying to do is this:

If there is a cell in column A that has a value of 'abc'(hard coded, no
formulas), I want the contents in the cell to the right to be deleted.


---
Message posted from http://www.ExcelForum.com/





All times are GMT +1. The time now is 02:18 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com