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
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Hello Peter,

The code does not work when the sheet is protected/locked......

Any Idea ??
 
Upvote 0
Yes, unprotect the sheet near the start of the code and re-protect the sheet at the end of the code.
To get the code to do that, start the macro recorder and unprotect the sheet, stop the recorder & look at the code. Same for re-protecting.
 
Upvote 0
Hi Peter,

Can u pls tell me how to assign these to the form control command button....

Right now i am using the ActiveX command button but the problem is that the ActiveX button is not working on the other PC.
I searched on the web to find a solution. Well there were some but the problem remains.

So i decided to assign all the macros which i have - to be linked with the Form Control Command Button... But i am unable to assign your code to the Form Control Command Button..

For the rest macros what i did is right clicked the Button and assigned the macros which i was able to select from the list.


These are the ones which at present are linked with the ActiveX command button


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


Kindly giude me how to do it....

Regards,

Humayun
 
Upvote 0
These are the ones which at present are linked with the ActiveX command button

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
Move those a standard module & remove 'Private' from the start of each one.
(Might also be a good idea to re-name them to something more meaningful)
You should then be able to right-click your Forms Control Command Buttons and assign the correct one of these macros to each.
 
Upvote 0
Move those a standard module & remove 'Private' from the start of each one.
(Might also be a good idea to re-name them to something more meaningful)
You should then be able to right-click your Forms Control Command Buttons and assign the correct one of these macros to each.

Thanks. I will do this & also what u told me in post # 33. Will give feedback.
 
Upvote 0
Hello Peter,

This part of the code is solved. I did as per u told me

Move those a standard module & remove 'Private' from the start of each one.
(Might also be a good idea to re-name them to something more meaningful)
You should then be able to right-click your Forms Control Command Buttons and assign the correct one of these macros to each.


Regarding The protect and unprotect sheet issue.


Yes, unprotect the sheet near the start of the code and re-protect the sheet at the end of the code.
To get the code to do that, start the macro recorder and unprotect the sheet, stop the recorder & look at the code. Same for re-protecting.


i did the same and got these recordings

Sub unprotect()
ActiveSheet.unprotect
End Sub

Sub protect()
ActiveSheet.protect DrawingObjects:=True, Contents:=True, Scenarios:=True _
, AllowFormattingColumns:=True, AllowFormattingRows:=True
End Sub

Now when i protect/unprotect the sheet i entered a password - whereas the code does not show anything like that.
I want the Sheet to be password protected.

Any Idea what to do ??

Regards,

Humayun
 
Upvote 0
Edit the password to whatever you have used.

Rich (BB code):
ActiveSheet.Unprotect Password:="abc"

'Other code here

ActiveSheet.Protect Password:="abc", DrawingObjects:=True, Contents:=True, Scenarios:=True, AllowFormattingColumns:=True, AllowFormattingRows:=True
 
Upvote 0
Thanks a lot Peter.... Everything is working just PERFECT :)
 
Upvote 0

Forum statistics

Threads
1,215,329
Messages
6,124,301
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