Span Border and Colors Across

vahnx

Board Regular
Joined
Apr 10, 2011
Messages
188
I've been writing code to do this but numerous bugs etc. and I've wasted too much time on it now. How do I span the following background colors across the rest of the respective rows? I need the color/background scheme/everything seen in the image below to be copied, not values or formulas within the cells, just the looks.

testgj.png


Code:
Sub SetRowUnifiedStyle()
    For i = 2 To 15571				
        If Range("AN" & CStr(i)) <> 0 Then
       		Range("AN" & CStr(i) & ":CA" & CStr(i)).Interior.Color = Range("B" & CStr(i)).Interior.Color
        	Range("AN" & CStr(i) & ":CA" & CStr(i)).Interior.Pattern = Range("B" & CStr(i)).Interior.Pattern
        End If
    Next i
End Sub
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
You could try something like this:

Code:
    For i = 2 To 15571
        If Range("AN" & i).Value <> 0 Then
            ActiveSheet.Rows(i).EntireRow.Interior.Color = Range("B" & i).Interior.Color
            ActiveSheet.Rows(i).EntireRow.Interior.Pattern = Range("B" & i).Interior.Pattern
        End If
    Next i
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,834
Members
452,947
Latest member
Gerry_F

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