How to make a Macro "On/Off"

bobsburgers

Board Regular
Joined
Jun 25, 2017
Messages
60
Hi, all -

Would it be possible to turn to below code into a Macro that repeats its core function until told to stop?

Code:
Sub Item_Return()


    Dim scanstring As String
    Dim foundscan As Range
    Dim ws As Worksheet
    Dim foundscan_address As String
    
Set ws = ActiveSheet


scanstring = InputBox("Please enter a value to search for", "Enter value")


With ws.Columns("D")
    
    Set foundscan = .Find(What:=scanstring, LookIn:=xlValues, LookAt:=xlWhole, _
                          SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                          MatchCase:=False, SearchFormat:=False)
                      
    If Not foundscan Is Nothing Then
foundscan_address = foundscan.Address

Do
        foundscan.Offset(0, 4).Value = scanstring
        ws.Activate
        foundscan.Activate
        ActiveWindow.ScrollRow = foundscan.Row

        Set foundscan = .FindNext(foundscan)

Loop While Not foundscan Is Nothing And foundscan.Address <> foundscan_address

    Else
        MsgBox scanstring & "  was not found"
    End If
    
End With

End Sub

Ideally, it would be run with an "On/Off" button; wherein, while the Macro is "On", the function resets every time it is performed, until the user turns the macro "Off".

Thank you!

Best,

Bob
 
No apologies necessary! Any input helps; however, how would I insert a "carriage return" within the VBA code?

I'm not exactly sure how a carriage return would work in the code. Thank you so much for your help and patience!!

Best,

Bob
Hi Bobsburgers

I think what Martinshort is trying to tell you to do, is place your cursor between the words ‘Option Explicit’ and ‘Sub Test()’ and then press your ‘ENTER’ key. This will move the words ‘Sub Test()' down one line. In coding, the ‘ENTER’ key is sometimes referred to as a ‘Carriage Return’. What you should see would look like this:
Option Explicit
Sub Test()
‘now the rest of the code
End Sub
 
Upvote 0

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
No apologies necessary! Any input helps; however, how would I insert a "carriage return" within the VBA code?

I'm not exactly sure how a carriage return would work in the code. Thank you so much for your help and patience!!

Best,

Bob

Just press Enter :)
 
Upvote 0
I think this will work until there is no scan or you click cancel or close on the input box.
Code:
Sub Item_Return()

    Dim scanstring As String
    Dim foundscan As Range
    Dim ws As Worksheet
    Dim foundscan_address As String
    
Set ws = ActiveSheet

scanstring = InputBox("Please enter a value to search for", "Enter value")
If scanstring = "" Then Exit Sub

With ws.Columns("D")
    
    Set foundscan = .Find(What:=scanstring, LookIn:=xlValues, LookAt:=xlWhole, _
                          SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                          MatchCase:=False, SearchFormat:=False)
                      
    If Not foundscan Is Nothing Then
foundscan_address = foundscan.Address

Do
        foundscan.Offset(0, 4).Value = scanstring
        ws.Activate
        foundscan.Activate
        ActiveWindow.ScrollRow = foundscan.Row

        Set foundscan = .FindNext(foundscan)

Loop While Not foundscan Is Nothing And foundscan.Address <> foundscan_address

    Else
        MsgBox scanstring & "  was not found"
    End If
    
End With

    Call Item_Return

End Sub

This seems to work perfectly! Thank you so much NoSparks!!

I'll test it at full volume today!

As always, thank you all so much for your help with this!!

Best,

Bobo :cool:
 
Upvote 0
Hi Bobsburgers

I think what Martinshort is trying to tell you to do, is place your cursor between the words ‘Option Explicit’ and ‘Sub Test()’ and then press your ‘ENTER’ key. This will move the words ‘Sub Test()' down one line. In coding, the ‘ENTER’ key is sometimes referred to as a ‘Carriage Return’. What you should see would look like this:
Option Explicit
Sub Test()
‘now the rest of the code
End Sub

Hi, TotallyConfused!

thank you so much for your response on this. I wasn't exactly clear on how this coding was supposed to work with the code I already have, so this helped a lot. thanks again!!

best,

bob
 
Upvote 0
Hi, TotallyConfused!

thank you so much for your response on this. I wasn't exactly clear on how this coding was supposed to work with the code I already have, so this helped a lot. thanks again!!

best,

bob

You're welcome. Just glad to be of help. It's the little details that can mess a person up. Since I joined this site, there have been several people help me with my problems, so any time I can return the favor, I'm glad to do so.
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,967
Members
452,371
Latest member
Frana

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