I have a macro in a spreadsheet that deletes all on one sheet, then opens another spreadsheet, copies it and then goes back to the first sheetwhere it should then do some Vlookups and create an order based on an orer being geneterated by another system but in totally the wrong format
The code I have is:
I want all the numbers in Column Hin the Anchor 4th Nov .xls sheet which are copied as Text to be converted to Numbers, otherwise my lookups are not working in the TUCOStMarys sheet
The code I have is:
Code:
Sheets("Symphony Order").Select
Cells.Select
Selection.Clear
Workbooks.Open Filename:="C:\Symphony Exports\Report_Order.xls"
Cells.Select
Selection.Copy
Windows("Anchor 4th Nov .xls").Activate
Sheets("Symphony Order").Select
Selection.PasteSpecial Paste:=xlPasteAllUsingSourceTheme, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Application.DisplayAlerts = False
Windows("Report_Order.xls").Activate
ActiveWindow.Close
Windows("Anchor 4th Nov .xls").Activate
Sheets("TUCOStMarys").Activate
Range("D1").Select
Last edited by a moderator: