I written macro which copy date from one sheet to other.
Sheet1.Cells(i, 3).Copy
Sheet1.Paste Destination:=Sheet2.Cells(erow, 1)
But in sheet 1 are formulas and I want to copy just values. How to change this code to solve my needs?
I written macro which copy date from one sheet to other.
Sheet1.Cells(i, 3).Copy
Sheet1.Paste Destination:=Sheet2.Cells(erow, 1)
But in sheet 1 are formulas and I want to copy just values. How to change this code to solve my needs?
Use:
Or: