Is it possible to put a number in the clipboard using "copy" to paste it in another application ?
I want to detect the color-code (selection.interior.color) of a cell and paste this in another application using "ctrl V"
is not working
I want to detect the color-code (selection.interior.color) of a cell and paste this in another application using "ctrl V"
Code:
Sub color_code()
temp = Selection.Interior.Color
temp.Copy
End Sub