Thanks. Okay, getting close. The only thing is I want the new spreadsheet to have the entire row for the rows that have the value selected.
To my knowledge, there is no standard technique in Excel to do that!
So we will use the VBA to accomplish this task!
- After you select the cells by using Find and Replace, keep them selected.
- Press Alt+F11 to open the VBA editor.
- Press Ctrl+G to view the immediate window as shown in the below screenshot:
- Copy this line of code to the immediate window: Selection.EntireRow.Select as below screenshot:
- In the immediate window keep the cursor in the first line and hit Enter.
- Close the VBA editor.
Now you have the entire rows with a specific value selected!
Click Ctrl+C to copy them, then paste them into another worksheet by Ctrl+V!