Hi all,
I`m starting to learn about macro`s and VBA.
Currently i`m using this macro to change the font color from the selection of cells :
Now i want to add Copy.Selection to this so that it saves the selection onto the clipboard, however i can`t get it to copy without the changed font color. I know i can fix this with pasting values only, but is there a way to copy the values before changing font color?![]()
Sub Kleur_Copy() Dim rngCell As Range Application.ScreenUpdating = False For Each rngCell In Selection rngCell.Font.Color = RGB(0, 165, 0) Next rngCell Application.ScreenUpdating = True End Sub
Kind regards,
Bookmarks