Code:
Sub Swap_Values()
Dim Temp As Double
ThisWorkbook.Worksheets("JV").Activate
Temp = Cells(9).Value
Cells(9).Value = Cells(11).Value
Cells(11).Value = Temp
End Sub
can any one help mw with this code
row9
row10
row11
i want
row9=row11
row11=row10