I Have a format which gets data by vlookup formula after getting the formula i need to get data copied and pasted with values in the same place, But that format also contains other formula which has to be as formulas. As solution for this
I Have a format which gets data by vlookup formula after getting the formula i need to get data copied and pasted with values in the same place, But that format also contains other formula which has to be as formulas. As solution for this
Try the following making sure "CASES" sheet is active before running the code:
Code:
Sub PasteasValues()
Dim c As Integer
For c = 7 To 77 Step 4
Range(Cells(11, c), Cells(1161, c)).Value = Range(Cells(11, c), Cells(1161, c)).Value
Next c
End Sub