Hi there,
I need to copy the values in the cells in column AS to column E in a new sheet. However I need to use "paste special values only" because the cells in column AS contain a formula. This is what I have so far but it just returns #REF!
Thanks
I need to copy the values in the cells in column AS to column E in a new sheet. However I need to use "paste special values only" because the cells in column AS contain a formula. This is what I have so far but it just returns #REF!
Thanks
Code:
Worksheets("raw").Activate
Range("as:as").Copy
Worksheets("graphdata").Activate
Range("e1").Select
ActiveSheet.Paste