Hi guys.
VBA novice, so be gentle with me.
I am using the VBA coding below for users to export the contents of a worksheet to another workbook.
This works great until the data is filtered, which then throws up a 'Error 1004 - We can't do that to a merge cell'. Any work around?
Sub Export()
ActiveSheet.Cells.Copy
Workbooks.Add
ActiveCell.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
ActiveCell.PasteSpecial Paste:=xlFormats, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
End Sub
On another note, some users are getting a "Go To of Object - Application Failed" message....seperate issue I know, but thought I would throw 2 at you at once 
Thanks
D
Bookmarks