Change/Amend VBA Code To Run Fast

hrayani

Well-known Member
Joined
Jul 23, 2010
Messages
1,501
Office Version
  1. 2016
Platform
  1. Windows
Hello Friends,

I have a set of data which contains shipment records. I have to hide the rows where Column O
shows the status of the Shipment.

I am using the below mentioned code to hide rows based on Column O

PHP:
Private Sub CommandButton1_Click()

For a = 3 To 500

If Worksheets("RO").Cells(a, 15).Value = "Shipped" Then
Worksheets("RO").Rows(a).Hidden = False
End If
If Worksheets("RO").Cells(a, 15).Value = "In Progress" Then
Worksheets("RO").Rows(a).Hidden = True
End If
Next

End Sub

PHP:
Private Sub CommandButton2_Click()

For a = 3 To 500

If Worksheets("RO").Cells(a, 15).Value = "Shipped" Then
Worksheets("RO").Rows(a).Hidden = True
End If
If Worksheets("RO").Cells(a, 15).Value = "In Progress" Then
Worksheets("RO").Rows(a).Hidden = False
End If
Next

End Sub

PHP:
Private Sub CommandButton3_Click()

For a = 3 To 500

If Worksheets("RO").Cells(a, 15).Value = "Shipped" Then
Worksheets("RO").Rows(a).Hidden = False
End If
If Worksheets("RO").Cells(a, 15).Value = "In Progress" Then
Worksheets("RO").Rows(a).Hidden = False
End If
Next

End Sub


Is there any other way out (code) that can provide the desired result a bit fast or can we
change the code to make it work fast

Any help would be appreciated

Regards,

Humayun
 
hey peter.... i am so so sorry

forgot to tell you that i change the case of "shipped" and "in progress" in the code

i mean i changed that to proper case (1st alphabet Capital)

Let me change them back to the original and will update you shortly
 
Last edited:
Upvote 0

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,)
yes it was my mistake change the letter to uppercase

now its working like a bullet.... wow...

but what for the next two codes... shall we be using the same with a bit of amendment ??
 
Upvote 0
Got it peter... For all Three

Changed the true false part of the code...

Thanks for you time .... I really appreciate

Your cord works like a bullet as compared to mine

Regards,

Humayun
 
Upvote 0
yes it was my mistake change the letter to uppercase

now its working like a bullet.... wow...
That is more what I was expecting. ;)


but what for the next two codes... shall we be using the same with a bit of amendment ??
I will look at them.

Edit: I hadn't seen your last post so you have it all working now I think.
 
Last edited:
Upvote 0
Hmm...:(
quote_icon.png
Originally Posted by hrayani



No i have not changed anything else in the code


I apologize once again...
 
Upvote 0
I hadn't seen your last post so you have it all working now I think.

yes, its all working fine now
 
Last edited:
Upvote 0
Got it peter... For all Three

Changed the true false part of the code...
As you have noticed, all the codes are basically the same apart from the True/false parts, so this is what I would actually do as it would make it easier for any future tweaks that might be needed.

Put this in a standard module. Note that it is not a Command Button Click code, but is basically the code we had apart from the blue bits.

Rich (BB code):
Sub Show_Hide(bHideShipped As Boolean, bHideInProgress As Boolean)
  Dim Data As Variant, b As Variant
  Dim i As Long
  
  Application.ScreenUpdating = False
  Application.Calculation = xlCalculationManual
  With Worksheets("RO")
    Data = .Range("O3:O500").Value
    ReDim b(1 To UBound(Data), 1 To 1)
    For i = 1 To UBound(Data)
      Select Case LCase(Data(i, 1))
        Case "shipped": b(i, 1) = 9
        Case "in progress": b(i, 1) = "x"
      End Select
    Next i
    With .Range("Z3").Resize(UBound(b))
      .Value = b
      On Error Resume Next
      .SpecialCells(xlConstants, xlNumbers).EntireRow.Hidden = bHideShipped
      .SpecialCells(xlConstants, xlTextValues).EntireRow.Hidden = bHideInProgress
      On Error GoTo 0
      .ClearContents
    End With
  End With
  Application.Calculation = xlCalculationAutomatic
  Application.ScreenUpdating = True
End Sub

.. and change the three button click codes to these so that they are all using the one code with the show/hide parameters passed to it
Rich (BB code):
Private Sub CommandButton1_Click()
  Show_Hide bHideShipped:=False, bHideInProgress:=True
End Sub

Private Sub CommandButton2_Click()
  Show_Hide bHideShipped:=True, bHideInProgress:=False
End Sub

Private Sub CommandButton3_Click()
  Show_Hide bHideShipped:=False, bHideInProgress:=False
End Sub
 
Upvote 0
Hello Peter,

Tried the code you last provided... Changed In Proress to In Process

Everything is working just PERFECT...... :)

I just wanted to ask you that i noticed this part in the code

Application.ScreenUpdating = False

and applied it to my other macro/recordings as well and it made run my
macros/recordings much faster with not much blinking on the screen.

I will show you one of my macro/recording

I was using the below code which was running a bit slow.... not that slow but still a bit slow as compared to the new one which has the screenupdating set to False

Previous
PHP:
Sub weekly_summary_two_po()    
   
    Rows("16:86").Select
    Selection.EntireRow.Hidden = False
    Range("29:52,66:85").Select
    Selection.EntireRow.Hidden = True
    Range("L4").Select
            
End Sub

New
PHP:
Sub weekly_summary_two_po()
    
    Application.ScreenUpdating = False
    Rows("16:86").Select
    Selection.EntireRow.Hidden = False
    Range("29:52,66:85").Select
    Selection.EntireRow.Hidden = True
    Range("L4").Select
            
End Sub

I just wanted to ask you is it Ok to do it or i should not be doing it.... ??

Regards,

Humayun
 
Last edited:
Upvote 0
I just wanted to ask you is it Ok to do it or i should not be doing it.... ??
In general, "do it". In most cases it makes less screen flicker and faster code execution.
 
Upvote 0

Forum statistics

Threads
1,215,327
Messages
6,124,276
Members
449,149
Latest member
mwdbActuary

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