Below code copies a range of cells from multiple cells in a workbook to a Master Sheet however, I need it to copy only the values and not the formulas. I've tried a few things like
CopyRng.Copy With DestSh.Cells(Last + 1, "A")
.PasteSpecial xlPasteValues
.PasteSpecial...