macro for format painter

tlindeman

Active Member
Joined
Jun 29, 2005
Messages
313
I am not quite sure how to do this. I have monthly data in columns A:B, what I want is if cell A3 has data I would like it to copy and paste special fromat from cell A2. Or jsut format the cell GREy, either way would be acceptable. Is this possible, if so what is the code for it?

Thank you
Tony
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
For background to be grey, copy/past this code in the Sheet code:
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Target.Address = "$A$3" Then
        If Sheet2.Range("A3") <> "" Then
            With Sheet2.Range("A3")
                .Value = Sheet2.Range("A2")
                .Interior.ColorIndex = 16
                .Interior.Pattern = xlSolid
            End With
        Else: End If
    Else: End If
End Sub

For font color to be grey, copy/past this code into sheet code:
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Target.Address = "$A$3" Then
        If Sheet2.Range("A3") <> "" Then
            With Sheet2.Range("A3")
                .Value = Sheet2.Range("A2")
                .Font.ColorIndex = 16
            End With
        Else: End If
    Else: End If
End Sub

The code will automatically run if Cell A3 is selected. Make sure to change "sheet2" to your actual sheet name.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,516
Messages
6,179,231
Members
452,898
Latest member
Capolavoro009

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top