Hi Zano,
Try this:
Sub uniqueshow(): Dim ws As Worksheet
Set ws = Sheets("Sheet1")
With ws.Range("A1", ws.Range("A" & Rows.count).End(xlUp))
.AdvancedFilter Action:=xlFilterInPlace, Unique:=True
End With
End Sub
Directions for running the routine(s) just supplied
If you haven't used macros before you'll need to go to:
File- options - trust center -trust center settings - macro settings ,
the second option down (disable all macros with notification)
Then - Copy the code to the clipboard
Open your Workbook
Press ALT + F11 to open the Visual Basic Editor.
Select "Module" from the Insert menu
Type "Option Explicit" then paste the code under it
With the cursor between Sub and End Sub press F5 (F8 to Single Step)
OR
Press ALT + Q to close the code window.
Press ALT + F8 then double click on the macro name
*Be sure to save the book with the code as Macro-Enabled
Bookmarks