Hi All,
How would you go about creating a VBA macro that would copy from your SELECTED cells (army ants -----) and paste special values into your ACTIVE cell (cell that is current focus).
Something like this - but where Range"A1" is dynamic to pick the SELECTED cell and Range"B1" is also dynamic to pick the ACTIVE cell.
Any and all suggestions appreciated!
How would you go about creating a VBA macro that would copy from your SELECTED cells (army ants -----) and paste special values into your ACTIVE cell (cell that is current focus).
Something like this - but where Range"A1" is dynamic to pick the SELECTED cell and Range"B1" is also dynamic to pick the ACTIVE cell.
Code:
Sub pastespecial()
'
' pastespecial Macro
'
Range("A1").Copy
Range("B1").pastespecial (xlPasteValues)
End Sub
Any and all suggestions appreciated!