As always, post YOUR macro for comments. rng.value=rng.value
S S>B>S Dec 30, 2004 #3 I have a macro that manipulates excel data copy-pasted from several Excel 2000 documents. Is there a way to make sure that Selection.Copy copies just cell values ignoring all other cell properties (formulas, formatting,...)?
I have a macro that manipulates excel data copy-pasted from several Excel 2000 documents. Is there a way to make sure that Selection.Copy copies just cell values ignoring all other cell properties (formulas, formatting,...)?
S S>B>S Dec 30, 2004 #4 Workbooks.Open("c:\SourceFile1.xls") Workbooks.Open("c:\SourceFile2.xls") Workbooks.Open("c:\SourceFile3.xls") Workbooks.Add Workbooks(1).Worksheets(1).Range("F3:AC38").Copy Workbooks(4).Worksheets(1).Paste Workbooks(2).Worksheets(1).Range("F39:AC76").Copy Workbooks(4).Worksheets(2).Paste Workbooks(3).Worksheets(1).Range("F77:AC115").Copy Workbooks(4).Worksheets(3).Paste How can the above be modified so that Range.Copy picks up just the values of selected cells?
Workbooks.Open("c:\SourceFile1.xls") Workbooks.Open("c:\SourceFile2.xls") Workbooks.Open("c:\SourceFile3.xls") Workbooks.Add Workbooks(1).Worksheets(1).Range("F3:AC38").Copy Workbooks(4).Worksheets(1).Paste Workbooks(2).Worksheets(1).Range("F39:AC76").Copy Workbooks(4).Worksheets(2).Paste Workbooks(3).Worksheets(1).Range("F77:AC115").Copy Workbooks(4).Worksheets(3).Paste How can the above be modified so that Range.Copy picks up just the values of selected cells?
S S>B>S Dec 30, 2004 #5 Thanks. Help did help Don Guillett said: Use Paste PasteSpecial (look in HELP) -- Don Guillett SalesAid Software [email protected] values Click to expand...
Thanks. Help did help Don Guillett said: Use Paste PasteSpecial (look in HELP) -- Don Guillett SalesAid Software [email protected] values Click to expand...