vba error 1004 when changing .interior

bertjeiv

New Member
Joined
Sep 23, 2010
Messages
32
Hello all

I get a 1004 error message when I pass this code:
Code:
                With Sheets("overview").Range(Cells(2, 27), Cells(2, 26 + j)).Interior
                    .Pattern = xlSolid
                    .PatternColorIndex = xlAutomatic
                    .ThemeColor = xlThemeColorAccent1
                    .TintAndShade = -0.249977111117893
                    .PatternTintAndShade = 0
                End With
j is 63 for example. when the code "breaks" on this line and I hit continue the script carries on without problems and it even does what it is supposed to do with the code above. so I dont understand why I get that message.

thanks in advance
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Try

Code:
                With Sheets("overview").Range(Sheets("overview").Cells(2, 27), Sheets("overview").Cells(2, 26 + j)).Interior
                    .Pattern = xlSolid
                    .PatternColorIndex = xlAutomatic
                    .ThemeColor = xlThemeColorAccent1
                    .TintAndShade = -0.249977111117893
                    .PatternTintAndShade = 0
                End With
 
Upvote 0
great it works now I understand why it gave me that error, because it was working on the wrong page.

thanks a lot !
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,282
Members
452,902
Latest member
Knuddeluff

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