I need the macro to execute based on cursor selection of cells. That means, i will select certain number of rows and only for that rows, copy paste special values need to perform
Sub PasteSpecailValue()
Dim Area As Range, Cell As Range
For Each Area In Selection.Areas
For Each Cell In Selection
Cell.Value = Cell.Value
Next Cell
Next Area
End Sub