Button to display text; each time it is hit, display next in row

passedpawns

Board Regular
Joined
Dec 29, 2015
Messages
51
Hello Everyone!

I have a list of ID's in cell A1 - A50 on 'Sheet 1'. I have a summary page on 'Sheet 2'. I have a button on Sheet 2 that I want to pull the value in A1. When it is hit again, it shows A2. Again, A3 etc.

Please let me know how this can be accomplished! Thank you!
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
When the value has been "pulled", where do you want it to show. When you click the button again, do you want the next value to overwrite the previous one? If not, where do you want subsequent values to show?
 
Upvote 0
When the value has been "pulled", where do you want it to show. When you click the button again, do you want the next value to overwrite the previous one? If not, where do you want subsequent values to show?

When value is pulled, display on sheet 2, cell A1. When button is clicked again, the previous value can be overwritten with the new value.
 
Upvote 0
The code below is for a form control button (not an active-x button). Place the button on Sheet2. The button caption will specify which ID# (from 1 - 50) will be shown in Sheet2 cell A1 on the next button click. Note: my button was button 3 (in red) - change it to natch your button's name.
Rich (BB code):
Sub Button3_Click()
Static Ct As Long
Application.ScreenUpdating = False
Select Case Ct
    Case Is < 50
        Sheets("Sheet2").Range("A1").Value = Sheets("Sheet1").Range("A" & Ct + 1).Value
        Ct = Ct + 1
        If Ct < 50 Then
            With ActiveSheet.Shapes("Button 3")
                .Select
                Selection.Characters.Text = "Click for ID# " & Ct + 1
                Range("A1").Select
            End With
        Else
            With ActiveSheet.Shapes("Button 3")
                .Select
                Selection.Characters.Text = "Click for ID# " & 1
                Range("A1").Select
            End With
        End If
    Case Is >= 50
        Ct = 0
        Sheets("Sheet2").Range("A1").Value = Sheets("Sheet1").Range("A" & Ct + 1).Value
        Ct = Ct + 1
        With ActiveSheet.Shapes("Button 3")
            .Select
            Selection.Characters.Text = "Click for ID# " & 1
            Range("A1").Select
        End With
End Select
Application.ScreenUpdating = True
End Sub
 
Upvote 0
The code below is for a form control button (not an active-x button). Place the button on Sheet2. The button caption will specify which ID# (from 1 - 50) will be shown in Sheet2 cell A1 on the next button click. Note: my button was button 3 (in red) - change it to natch your button's name.
Rich (BB code):
Sub Button3_Click()
Static Ct As Long
Application.ScreenUpdating = False
Select Case Ct
    Case Is < 50
        Sheets("Sheet2").Range("A1").Value = Sheets("Sheet1").Range("A" & Ct + 1).Value
        Ct = Ct + 1
        If Ct < 50 Then
            With ActiveSheet.Shapes("Button 3")
                .Select
                Selection.Characters.Text = "Click for ID# " & Ct + 1
                Range("A1").Select
            End With
        Else
            With ActiveSheet.Shapes("Button 3")
                .Select
                Selection.Characters.Text = "Click for ID# " & 1
                Range("A1").Select
            End With
        End If
    Case Is >= 50
        Ct = 0
        Sheets("Sheet2").Range("A1").Value = Sheets("Sheet1").Range("A" & Ct + 1).Value
        Ct = Ct + 1
        With ActiveSheet.Shapes("Button 3")
            .Select
            Selection.Characters.Text = "Click for ID# " & 1
            Range("A1").Select
        End With
End Select
Application.ScreenUpdating = True
End Sub



Thank you!!!
 
Upvote 0
Joe's code with Mod operator:

Code:
Sub Button3_Click()
    Static Ct As Long
    Application.ScreenUpdating = False
    
    Sheets("Sheet2").Range("D1").Value = Sheets("Sheet1").Range("A" & Ct + 1).Value
    Ct = (Ct Mod 50) + 1
    If Ct = 50 Then Ct = 0
    Debug.Print "Ct=" & Ct
    With ActiveSheet.Shapes("Button 3")
        .Select
        Selection.Characters.Text = "Click for ID# " & Ct + 1
        Range("A1").Select
    End With
    
    Application.ScreenUpdating = True

End Sub
 
Upvote 0
Mod operator divides two numbers and returns the remainder. It is quite useful in creating cyclical sequences. More info here.
 
Upvote 0
Joe's code with Mod operator:

Code:
Sub Button3_Click()
    Static Ct As Long
    Application.ScreenUpdating = False
    
    Sheets("Sheet2").Range("D1").Value = Sheets("Sheet1").Range("A" & Ct + 1).Value
    Ct = (Ct Mod 50) + 1
    If Ct = 50 Then Ct = 0
    Debug.Print "Ct=" & Ct
    With ActiveSheet.Shapes("Button 3")
        .Select
        Selection.Characters.Text = "Click for ID# " & Ct + 1
        Range("A1").Select
    End With
    
    Application.ScreenUpdating = True

End Sub
Nice simplification!
 
Upvote 0

Forum statistics

Threads
1,216,025
Messages
6,128,336
Members
449,443
Latest member
Chrissy_M

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