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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
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.
|
|||
|
|
|
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.
|
|||
|
|
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