Can you see an issue with this code please

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,699
Office Version
  1. 2007
Platform
  1. Windows
Hi,
I have a code which works well & correct,it then calls the macro below.

Code:
Sub sheettolist()'
' sheettolist Macro
Sheets("HONDA SHEET").Range("A21:G21").Interior.ColorIndex = 6
Sheets("HONDA SHEET").Range("A21:G21").Copy
Sheets("HONDA LIST").Range("A4").Insert Shift:=xlDown
Application.CutCopyMode = False
Sheets("HONDA LIST").Range("A4").Characters(Start:=10, Length:=1).Font.ColorIndex = 3
Sheets("HONDA LIST").Range("A4").Select
ActiveWorkbook.Save
Sheets("HONDA SHEET").Range("A13").Select
End Sub

This should copy the data from HONDA SHEET to HONDA LIST
Select cell A4
Then return back to HONDA SHEET
Where cell A13 is then selected.

On each sheet i have a working code where once you select a cell that row will be Blue & the selected cell Green.
So in the code above i would like cell A4 slected on HONDA LIST so when i then return to it that row & cell is colored as mentioned.

With Sheets("HONDA LIST").Range("A4").Select in the code it returns a message,
Run time error 1004
Select class range of methos class failed.

So if i remove Sheets("HONDA LIST").Range("A4").Select,
I receive no errors.
The cell A4 on HONDA LIST is selected BUT the row/cell color is not updated & the next row down has the row/cell colored.

Many thanks
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
You can't select a cell on a sheet that isn't active.
To verify, try doing it manually.
 
Upvote 0
OK,
I posted my last message then your post appeared.

The below seems to now work without errors but i see the cursor going around a few times & sluggish.

Code:
Sub sheettolist()'
' sheettolist Macro
Sheets("HONDA SHEET").Range("A21:G21").Interior.ColorIndex = 6
Sheets("HONDA SHEET").Range("A21:G21").Copy
Sheets("HONDA LIST").Range("A4").Insert Shift:=xlDown
Application.CutCopyMode = False
Sheets("HONDA LIST").Range("A4").Characters(Start:=10, Length:=1).Font.ColorIndex = 3
ActiveWorkbook.Sheets("HONDA LIST").Activate
ActiveSheet.Range("A4").Select
ActiveWorkbook.Save
ActiveWorkbook.Sheets("HONDA SHEET").Activate
ActiveSheet.Range("A13").Select
ActiveWorkbook.Save
End Sub
 
Upvote 0
Try turning off screen updating while your macro runs, and only save the activeworkbook once, not twice as you are doing now.

Code:
Sub sheettolist()                                    '
' sheettolist Macro
    Application.ScreenUpdating = False
    With ActiveWorkbook
        .Sheets("HONDA SHEET").Range("A21:G21").Interior.ColorIndex = 6
        .Sheets("HONDA SHEET").Range("A21:G21").Copy
        .Sheets("HONDA LIST").Range("A4").Insert Shift:=xlDown
        Application.CutCopyMode = False
        .Sheets("HONDA LIST").Range("A4").Characters(Start:=10, length:=1).Font.ColorIndex = 3
        .Sheets("HONDA LIST").Activate
        ActiveSheet.Range("A4").Select
        .Sheets("HONDA SHEET").Activate
        ActiveSheet.Range("A13").Select
        .Save
    End With
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
Hi,
I tried the above but still the cell / row colors do not change
 
Upvote 0
Is the code that controls the cell/row colors ever being triggered during the running of this macro ?
Run the macro using the F8 key to step through the code one line at a time and see where it goes ?
The "Honda List" Worksheet events
_Activate, _Change and _SelectionChange, which likely sets the colors, will all be getting triggered unless events are being set false somewhere.
 
Upvote 0
Not quite sure if im doing this correct as per post #7
I select to the left of the top line of code & now i see a red dot.
I press F8 and see a line of code now yellow.
I also see a yellow arrow on the left.

I keep pressing F8 and then i see it reach the line code code for the color change,this is what i see change yellow.

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
THEN
If Target.Cells.Count > 1 Then
THEN
Exit Sub

It then goes to another code on the page & starts to work through it.
 
Upvote 0
What problem are you trying to solve? In post #4 you said you had code that worked and that you were trying to solve a 'sluggishness' problem.
 
Upvote 0

Forum statistics

Threads
1,223,270
Messages
6,171,102
Members
452,379
Latest member
IainTru

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