Hi Joe4,
Thanks for the response, really appreciate it. I am afraid what I am looking for is neither though. I have content in the table with some cells only having NA as content which I am trying to remove but on doing that all the NA occurring in that sheet regardless of being in middle of a word like "Signal" are getting deleted, leaving behind words like Sigl which is complicating my readability. I hop I have clarified the issue. I am using the following code:
Cells.Select
Selection.Replace What:="NA", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Selection.SpecialCells(xlCellTypeBlanks).Select
Selection.Delete Shift:=xlUp