More Efficient Code

Rubber Beaked Woodpecker

Board Regular
Joined
Aug 30, 2015
Messages
203
Office Version
  1. 2021
The following code works very well but it run a couple of hundred times a day and each my pc cpu is briefly 100%

Anyone think that it could be written in a more efficient way to save my pc pls?

VBA Code:
Sub Reports()
   
Dim source As Worksheet
Dim destination As Worksheet
Dim emptyColumn As Long

Set source = Sheets("Sheet1")
Set destination = Sheets("Sheet8")

source.Range("Z2:Z40").Copy

emptyColumn = destination.Cells(28, destination.Columns.Count).End(xlToLeft).Column

If IsEmpty(destination.Range("A28")) Then
    destination.Cells(1, 1).PasteSpecial Transpose:=True
       
Else
    emptyColumn = emptyColumn + 1
    destination.Cells(28, emptyColumn).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
        
        
  destination.Cells(28, emptyColumn).PasteSpecial Paste:=xlPasteFormats
  
    
End If
   
End Sub
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
What do you call briefly 100%.......milliseconds ??
 
Upvote 0
Hi @Rubber Beaked Woodpecker. Thanks for posting on the forum.

Instead of copying and pasting and then pasting the formats. I suggest the following:
1. Before executing the macro, copy the cells "Z2:Z40" from sheet1, select sheet8, select entire rows from row 28 to row 66, paste formatting, use paste special, paste Formats.
That way the formatting will already be in all the rows and it won't be necessary to paste it every time.

2. Instead of copying and pasting values, what we will do is pass the values from sheet1 to sheet8.

3. I suppose that this part of the code is to paste the data as a header and I also suppose that it is only done once. So you could remove it from the code.
VBA Code:
If IsEmpty(destination.Range("A28")) Then
    destination.Cells(1, 1).PasteSpecial Transpose:=True


Try the following macro:
VBA Code:
Sub Reports()
  Dim source As Worksheet, destination As Worksheet
  Dim emptyColumn As Long
  Dim a As Variant
 
  Set source = Sheets("Sheet1")
  Set destination = Sheets("Sheet8")
 
  a = source.Range("Z2:Z40").Value
  emptyColumn = destination.Cells(28, destination.Columns.Count).End(xlToLeft).Column
 
  If IsEmpty(destination.Range("A28")) Then
    destination.Cells(1, 1).PasteSpecial Transpose:=True
  Else
    emptyColumn = emptyColumn + 1
    destination.Cells(28, emptyColumn).Resize(UBound(a, 1)).Value = a
  End If
End Sub

If point 3 is correct, the code can be simplified like this:
VBA Code:
Sub Reports()
  Dim a As Variant
  a = Sheets("Sheet1").Range("Z2:Z40").Value
  With Sheets("Sheet8")
    .Cells(28, .Cells(28, .Columns.Count).End(1).Column + 1).Resize(UBound(a, 1)).Value = a
  End With
End Sub

It could even be on a single line:
VBA Code:
Sub Reports()
  Sheets("Sheet8").Cells(28, Sheets("Sheet8").Cells(28, Columns.Count).End(1).Column + 1).Resize(39).Value = Sheets("Sheet1").Range("Z2:Z40").Value
End Sub


--------------
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
--------------
 
Last edited:
Upvote 0
After testing a little more it is now clear that the CPU usage is caused by the sheet calculating rather than just the copy and paste from sheet1.

If sheet8 is manual calculation I would like to adjust the code so that after copy and paste from sheet1 to sheet8, the code would then find the last populated column in sheet 8 and find all = and replace all = which I believe will force a manual calculation.

This possible please?

RBW
 
Upvote 0

Forum statistics

Threads
1,215,276
Messages
6,124,006
Members
449,137
Latest member
abdahsankhan

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