Hi Guys,
I currently have this macro
Sub COPYTODASH()
Application.ScreenUpdating = False
Worksheets("DASHBOARD").Range("R26:R26").Copy Worksheets("PROG").Range("C" & Rows.Count).End(xlUp)(2)
Application.ScreenUpdating = True
End Sub
It works as expected, the only problem I'm having is that it's pasting the formula, I need to paste only the value
from ("DASHBOARD").Range("R26:R26")
So I'm trying to add the paste special values only portion, but I do not know where to incorporate it exactly.
Can someone please help me, Thanks!
I currently have this macro
Sub COPYTODASH()
Application.ScreenUpdating = False
Worksheets("DASHBOARD").Range("R26:R26").Copy Worksheets("PROG").Range("C" & Rows.Count).End(xlUp)(2)
Application.ScreenUpdating = True
End Sub
It works as expected, the only problem I'm having is that it's pasting the formula, I need to paste only the value
from ("DASHBOARD").Range("R26:R26")
So I'm trying to add the paste special values only portion, but I do not know where to incorporate it exactly.
Can someone please help me, Thanks!