I am absolutely new to vba. I want to copy certain values in cells from two tabs (\"Equities\", \"Bonds\") into a third one (\"ZSM\") with the following code.
Su
You should use xlPasteValues. Example:
xlPasteValues
Range("B5").PasteSpecial xlPasteValues
If you prefer formulas you could use xlPasteFormulas.
xlPasteFormulas
I strongly advise to read this article on how to avoid using Select:
Select
How to avoid using Select in Excel VBA