Hi,
My cut/paste macro is suddenly not working. It is coming up with error 1004. Would somebody please post a better coded macro for this?
Here is my current macro:
![]()
Sub MoveVolume() Dim loc As Range, locaddress As String, SearchString SearchString = "Volume" With Cells Set loc = .Find(What:=SearchString) End With locaddress = loc.Address(0, 0) Range(locaddress).EntireColumn.Cut Columns("C:C").Insert Shift:=xlToRight End Sub
Bookmarks