This is annoying:
I copy stuff from one sheet, go to another sheet, run this simple macro to reset filtered lists:
then try to Paste, and the macro has cleared the clipboard.
Any ideas how to stop this?
it doesn't happen with this macro:
so I'm puzzled....
I copy stuff from one sheet, go to another sheet, run this simple macro to reset filtered lists:
Code:
Sub ResetFilteredLists()
On Error Resume Next
ActiveSheet.ShowAllData
Range("B2").Select
End Sub
Any ideas how to stop this?
it doesn't happen with this macro:
Code:
Sub nextavailablerow()
Range("b65536").End(xlUp).Offset(1, 0).Select
End Sub
so I'm puzzled....