So, I have a macro that automatically selects the values ββin the autofilter based on the date.
This works great. However, I need it to copy only visible cells with data and paste it into the next NEXT line on a sheet called a referral.
Sub Referral() Application.ScreenUpdating = False With Sheets("Raw") Sheets("Raw").ShowAllData Sheets("Raw").Range("A1:BK1").AutoFilter Field:=14, _ Criteria1:=Format(Sheets("Main").Range("E13").Value + 15, "mm/dd/yyyy") Sheets("Raw").Range("A1:BL50000").Copy End With End Sub
source share