i would like to change the macro below to do the following
Rather than paste the results to cells(10, 36) in the current worksheet, instead I want them to be pasted to another sheet called "Master Tables" and to Cells(X,Y) withing that sheet. X and Y will be specified with a value in the macro - e.g. x=12 : y=3
Also, I would like to paste only the values, not the formats.
Finally, I would like the list to be sorted from A to Z.
==================================================
Sub Update_Asset_List()
Range("E10:E15536").AdvancedFilter _
Action:=xlFilterCopy, CopyToRange:=Cells(10, 36), Unique:=True
End Sub
==================================================
I would appreciate any help.
Thanks,
MikeG
Rather than paste the results to cells(10, 36) in the current worksheet, instead I want them to be pasted to another sheet called "Master Tables" and to Cells(X,Y) withing that sheet. X and Y will be specified with a value in the macro - e.g. x=12 : y=3
Also, I would like to paste only the values, not the formats.
Finally, I would like the list to be sorted from A to Z.
==================================================
Sub Update_Asset_List()
Range("E10:E15536").AdvancedFilter _
Action:=xlFilterCopy, CopyToRange:=Cells(10, 36), Unique:=True
End Sub
==================================================
I would appreciate any help.
Thanks,
MikeG