Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to delete all text in a Microsoft Excel Spreadsheet that isn't a part number. These part numbers are in the format of "00-000-0000" I'm trying to use VBA coding to accomplish this but am completely lost on how to do this.

share|improve this question
Please provide at least the part of your code for initial input - where you're the most stacked. – Peter L. Jan 22 at 19:21
You can use Like "##-###-####" or a regular expression to identify which cells contain part numbers. It will be a little more complex if the part numbers can be contained in other text. You should post what you've tried so far if you want more specific help. – Tim Williams Jan 22 at 19:22
I just started using VBA so I don't really have any code to provide. – user2001494 Jan 22 at 19:23
What is stackoverflow? A language-independent collaboratively edited question and answer site for programmers. :-) So there is process that qualifies a question as well as the answers. Here is a guide to write a good question – bonCodigo Jan 22 at 20:14

closed as not a real question by Ken White, Siddharth Rout, brian d foy, Sindre Sorhus, C. Ross Jan 23 at 1:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

sub Excess_Remover()
'****************************
'** Provided by Maudise on **
'** www.StackOverflow.com  **
'****************************
dim Cell_Length as integer
dim ActiveCellValue as string
' We know that the length is going to be 11 characters and that there is going to be at least two hyphens.


for each cell in selection
ActiveCellValue = activecell.value
if len(ActiveCellValue) <> 11 then 
activecell.clearall
elseif InStr(InStr(1, ActiveCell.Value, "-") + 1, ActiveCell.Value, "-") = 0 thend
activecell.clearall
else
' two hyphens and 11 characters, without seeing the spread sheet this might be enough

end if
next c

'not been tested in excel so might not work
end sub
share|improve this answer

You'll need to use something like this. But we need more info about where and how part numbers exist in your spreadsheet to help.

Sub ReplaceAllPart()
  For Each sht in ThisWorkbook.Sheets
    For Each rng in sht
      If IsPart(rng.value) Then rng.ClearContents 'this line uses the custom function below
    Next rng
  Next sht
End Sub

Function IsPart(val as Variant) As Boolean
  'fancy code goes here
End Function
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.