Is it possible to be able to tidy and make my code quicker?

danbates

Active Member
Joined
Oct 8, 2017
Messages
377
Office Version
  1. 2016
Platform
  1. Windows
Hi,

I have a list box with the 52 weeks of the year in listed as WK 1, WK 2 and so on up to WK 52.

So when a week is selected from the listbox all the data is copied from that week sheet on to my current weeks data sheet.

Here is part of my code. Its is all the same apart from the week numbers.

Is there any way of making this code better and quicker?

Code:
Private Sub CommandButton1_Click()

Application.ScreenUpdating = False

If ListBox1.Value = "WK 1" Then

Sheets("Current weeks data").Cells.ClearContents
Sheets("WK 1").Select
ActiveSheet.Rows("1:" & ActiveSheet.UsedRange.Rows(ActiveSheet.UsedRange.Rows.Count).Row).Copy
Sheets("Current weeks data").Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Range("A1").Select

ElseIf ListBox1.Value = "WK 2" Then

Sheets("Current weeks data").Cells.ClearContents
Sheets("WK 2").Select
ActiveSheet.Rows("1:" & ActiveSheet.UsedRange.Rows(ActiveSheet.UsedRange.Rows.Count).Row).Copy
Sheets("Current weeks data").Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Range("A1").Select

ElseIf ListBox1.Value = "WK 3" Then

Sheets("Current weeks data").Cells.ClearContents
Sheets("WK 3").Select
ActiveSheet.Rows("1:" & ActiveSheet.UsedRange.Rows(ActiveSheet.UsedRange.Rows.Count).Row).Copy
Sheets("Current weeks data").Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Range("A1").Select

ElseIf ListBox1.Value = "WK 4" Then

Any help would be appreciated.

Thanks

Dan
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Looking at your code, I think that you might be copying entire rows, not just the columns with data. If that is the case then the extra bloat is probably not helping things.

See if this helps, note that if your weekly sheets are bloated then it will probably still be slow.

In the Current Week sheet, go to what should be the first empty column, select a cell in that column, press Shift Ctrl Right arrow, right click and Delete > Entire Column, then Save. This will remove the bloat that your code has created in the Current Week sheet.
Code:
Private Sub CommandButton1_Click()

With Application
    .ScreenUpdating = False
    .Calculation = xlManual

With Sheets("Current weeks data")
    .Cells.ClearContents
    Sheets(ListBox1.Value).UsedRange.Copy
    .Range("A1").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
End With

    .Calculation = xlAutomatic
    .ScreenUpdating = True
End With

End Sub
 
Upvote 0
Hi,

Thank you for your code it does exactly what I had asked for but I was wondering if it was possible to also change the column widths as well with the copied cells?

Thanks again for your help.

Dan
 
Upvote 0
Probably not going to work too well if you have merged cells or wrapped text, but trying the easiest option first.
Code:
Private Sub CommandButton1_Click()

With Application
    .ScreenUpdating = False
    .Calculation = xlManual

With Sheets("Current weeks data")
    .Cells.ClearContents
    Sheets(ListBox1.Value).UsedRange.Copy
    .Range("A1").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
[COLOR="#FF0000"]    .UsedRange.Columns.Autofit[/COLOR]
End With

    .Calculation = xlAutomatic
    .ScreenUpdating = True
End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,956
Messages
6,122,465
Members
449,085
Latest member
ExcelError

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