Im filtering a selection and I want to insert a msg box to allow the user to work on the spreadsheet once the msg box pops up. Therefore they can make changes then click ok to let the macro continue. How would i do that? Right now its not allowing me to edit. Thanks.
Code:
Dim lRow5 As Long, rngTarget5 As Range
With Worksheets("Sales Breakdown")
lRow5 = .Cells(.Rows.Count, 20).End(xlUp).Row
Set rngTarget5 = .Range("A1:AA" & lRow5)
With rngTarget5
.AutoFilter Field:=20, Criteria1:="New"
End With
Msg Box "Please Copy and Paste New Information and Click Ok"