Loop Question

ttropics

New Member
Joined
Mar 3, 2018
Messages
7
Is it possible to to assign a button to complete 1 loop then a second click would perform the the next part of the loop?
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
I'm not sure if this is the most efficient way to do it, but I could imagine using a counter to keep track of the button clicks. And then have each section of code nested in an IF/Then or Select Case and choose which part of code you want to execute based on how many times the button has been clicked.

Code:
Sub Button_Click()
Dim ClickCount As Long
ClickCount = ClickCount + 1
If ClickCount = 1 Then
...first part of code here...
Else
If ClickCount = 2 Then
...second part of code here...
Else
.......
End If
End If
End Sub
 
Last edited:
Upvote 0
this is my code

Private Sub CommandButton1_Click()

Columns("B:C").ColumnWidth = 22


range("a1").Value = "Number"
range("b1").Value = "Square of the Number"
range("c1").Value = "Square root of the Number"


range("a2:c2").Value = 1


Dim x As Integer


For x = 2 To 17
Cells(x, 1).Interior.Color = RGB(178, 178, 178)
Cells(x, 1).Value = (x - 2) + 1
Cells(x, 2).Value = ((x - 2) + 1) ^ 2
Cells(x, 3).Value = ((x - 2) + 1) ^ (1 / 2)


Next x




End Sub

MY question wasnt very clear, what i need is for the first click to be x=2, the second to be x=3 and so
on.

thanks
 
Upvote 0
Then perhaps something like this:

Rich (BB code):
Private Sub CommandButton1_Click()

 Columns("B:C").ColumnWidth = 22


 range("a1").Value = "Number"
 range("b1").Value = "Square of the Number"
 range("c1").Value = "Square root of the Number"


 range("a2:c2").Value = 1


 Dim x As Integer

If x = 0 Then
   x = 2
Else
   x = x + 1
End If

 For x = 2 To 17
 Cells(x, 1).Interior.Color = RGB(178, 178, 178)
 Cells(x, 1).Value = (x - 2) + 1
 Cells(x, 2).Value = ((x - 2) + 1) ^ 2
 Cells(x, 3).Value = ((x - 2) + 1) ^ (1 / 2)


 Next x




 End Sub

After testing, you will have to move your "Dim x As integer" line outside of the sub as a global variable. Otherwise, it will just keep resetting it to 0 each time the macro runs. Or, you will have to keep track of it on a worksheet somewhere and add to the value each time the macro runs.

Rich (BB code):
Dim x As Integer

Sub Click_Me()
If x = 0 Then
    x = 2
Else
    x = x + 1
End If
MsgBox x
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,780
Members
449,049
Latest member
greyangel23

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