VBA: Paste Values instead of formulas
问题 I am new to vba. I want to copy certain values in cells from one tab into another with the following code. Sheets("Equities").Select Range("B5").Select Range(Selection, Selection.End(xlDown)).Select Range(Selection, Selection.End(xlToRight)).Select Selection.Copy Sheets("ZSM").Select Range("B5").Select ActiveSheet.Paste Sheets("Bonds").Select Range("B5").Select Range(Selection, Selection.End(xlDown)).Select Range(Selection, Selection.End(xlToRight)).Select Selection.Copy Sheets("ZSM").Select