trying to filter and copy visible cells over to a new sheet for excel couldn't find anything that might work at this stage.
Any help would be grateful
Sheets("Sheet1").Select
ActiveSheet.Range("$A$2:$Y$295").AutoFilter Field:=25, Criteria1:=Array( _
"Friday", "Thursday", "Tuesday", "Wednesday", "Monday"), Operator:=xlFilterValues
Columns(24).Cells.SpecialCells(xlCellTypeVisible).Cells(3).Select
ActiveCell.FormulaR1C1 = "=VLOOKUP(RC[-21],'Weekday-Rate'!R3C3:R38C4,2,FALSE)"
Worksheets("Sheet1").Range("X3:X").SpecialCells(xlCellTypeVisible).FillDown
Selection.SpecialCells(xlCellTypeVisible).Select
Range("V14").Select
Selection.SpecialCells(xlCellTypeVisible).Select
Selection.Copy
Sheets("Weekday").Select
Range("A1").Select
ActiveSheet.Paste
Sheets("Sheet1").Select
Application.CutCopyMode = False