ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Empty a cell if the values equal to "IN" , "MC" or "PP" (https://www.excelbanter.com/excel-programming/403317-empty-cell-if-values-equal-mc-pp.html)

YHT

Empty a cell if the values equal to "IN" , "MC" or "PP"
 
Hi all,

Could someone tell me how to write a script to empty a cell if the current
cell value is equal to "IN", "MC" or "PP"? I need to search from first cell
in Column B till the last cell in the same column.

Thanks.




Gary Keramidas

Empty a cell if the values equal to "IN" , "MC" or "PP"
 
here is one way, just change the sheet reference:

Option Explicit

Sub empty_some_cells()
Dim ws As Worksheet
Dim lastrow As Long
Dim cell As Range
Dim rng As Range
Application.ScreenUpdating = False
Set ws = Worksheets("Sheet1")
lastrow = ws.Cells(Rows.Count, "B").End(xlUp).Row
Set rng = ws.Range("B1:B" & lastrow)
For Each cell In rng
Select Case cell.Value
Case "IN", "MC", "PP"
cell.Value = ""
End Select
Next
Application.ScreenUpdating = True
End Sub



--


Gary


"YHT" wrote in message
...
Hi all,

Could someone tell me how to write a script to empty a cell if the current
cell value is equal to "IN", "MC" or "PP"? I need to search from first cell
in Column B till the last cell in the same column.

Thanks.







All times are GMT +1. The time now is 08:20 AM.

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