Picking Information from a list

  • Thread starter Thread starter eddie84
  • Start date Start date
E

eddie84

Thankyou for that. However, I am wanting to bring these across into
separate list which shows all the players registered for a club. Th
filter option doesn't help me with the moving of this elsewhere.
need the information in a different place as the information is goin
to be used to complete a team sheet automatically.

...... here's hoping.....
 
Here is one I did for a client recently.

With Sheets("yoursheenamehere")
..Range("yourrangenamehere").AdvancedFilter Action:=xlFilterInPlace,
Unique:=True
..Range("yourrangenamehere").SpecialCells(xlCellTypeVisible).Copy
Sheets("destinationsheet").Range("b28").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
If .FilterMode = True Then .ShowAllData
'.Rows(4).Hidden = True
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top