I have a code that I am trying to finalize.
If Diff <= 0 Then
Selection.EntireRow.Copy
Sheets("sheet26").Select
ActiveCell.Next(2, 0).Select
ActiveSheet.PasteSpecial
End If
In the last column there are calculated values, using a formula. ranging from 1 thru 270. The goal is just to copy the values, and not the calculated values using a formula.
I just want to paste the values and not the calulated values
If Diff <= 0 Then
Selection.EntireRow.Copy
Sheets("sheet26").Select
ActiveCell.Next(2, 0).Select
ActiveSheet.PasteSpecial
End If
In the last column there are calculated values, using a formula. ranging from 1 thru 270. The goal is just to copy the values, and not the calculated values using a formula.
I just want to paste the values and not the calulated values