Format cells with the same color when checking the background

sofas

Well-known Member
Joined
Sep 11, 2022
Messages
519
Office Version
  1. 2019
Platform
  1. Windows
Hello, I am trying to format the cells with the same color, but I do not know what is wrong with this.

VBA Code:
Sub RowFormat()
Dim LastCellColor As Long
    Dim A As Range
    For Each A In Range("a3:m100")
        If Not IsError(A) Then
            If A.Interior.ColorIndex <> xlNone Then
            LastCellColor = A.Interior.Color
                A.Offset(0, 9).Interior.ColorIndex = LastCellColor
            Else
                A.Offset(0, 9).Interior.ColorIndex = xlNone
            End If
        End If
    Next A
End Sub

Place the code in the sheet event to run automatically when the background is changed
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi
what supposes to do ?
what should do in column V if there is background in some cells?
can you explain clearly your data and expected result?
 
Upvote 0

Forum statistics

Threads
1,217,382
Messages
6,136,238
Members
450,000
Latest member
jgp19

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