2 macros (click a button) to insert certain text.

realest25

New Member
Joined
Jun 7, 2022
Messages
18
Office Version
  1. 2019
Platform
  1. Windows
I need 2 macros, one for a button when clicked to insert the text "NO", a second macro for a button when clicked to insert the text "YES". Both in range "B7:B200".

Meaning if I click the button "NO", it will insert the text "NO" in first cell from range "B7:B200", meaning B7. After that if I click the button "YES", it will insert the text "YES" in the next cell meaning B8. And so on, each time I click the button YES or NO, to insert the text "Yes" or "NO", in each cell one by one, in same column, range "B7:B200".

Example (please see below excel):
Step 1. Click button YES
Step 2. Click button NO
Step 3. Click button NO
Step 4. Click button YES
Step 5. Click button NO

etc


Test.xlsx
ABC
1
2NO
3
4YES
5
6
7YES
8NO
9NO
10YES
11NO
12
13
14
15
16
17
18
19
20
Sheet1
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
You could do this with 2 subs but if gets more complicated (e.g. font size/effect, cell colour etc.) then all of that gets repeated for each button. Otherwise it all goes into the sub that the buttons call so that it's only written once. YesButton_Click and NoButton_Click would be the names of YOUR button click events.
VBA Code:
Sub YesButton_Click()
Application.EnableEvents = False 'optional in both events
InsertYN "YES"
Application.EnableEvents = True
End Sub

Sub NoButton_Click()
Application.EnableEvents = False
InsertYN "NO"
Application.EnableEvents = True
End Sub

Sub InsertYN(strYN As String)
Dim lRow As Integer

lRow = Cells(Rows.count, "B").End(xlUp).Row
Range("B" & lRow + 1) = strYN

End Sub
 
Upvote 0
Try this:
Put the script in the proper button:
VBA Code:
Sub Yes()
'Modified 11/2/2022  10:31:35 PM  EST
Application.ScreenUpdating = False
Dim i As Long

    For i = 7 To 200
        If Cells(i, 2).Value = "" Then Cells(i, 2).Value = "Yes": Exit Sub
    Next
Application.ScreenUpdating = True
End Sub

Sub No()
'Modified 11/2/2022  10:31:35 PM  EST
Application.ScreenUpdating = False
Dim i As Long

    For i = 7 To 200
        If Cells(i, 2).Value = "" Then Cells(i, 2).Value = "No": Exit Sub
    Next

Application.ScreenUpdating = True
End Sub
 
Upvote 0
Even shorter than what I posted (as I said, duplication can be omitted by calling another sub).
VBA Code:
Sub YesButton_Click()
InsertYN "YES"
End Sub

Sub NoButton_Click()
InsertYN "NO"
End Sub

Sub InsertYN(strYN As String)
Dim lRow As Integer

Application.EnableEvents = False
lRow = Cells(Rows.count, "B").End(xlUp).Row
Range("B" & lRow + 1) = strYN
Application.EnableEvents = True

End Sub
I guess I missed that 'cause I'm trying to watch the ball game too. :)
 
Upvote 0
Solution
Hello. Thank you both very much for your help and solutions. Mr Micron and Mr My Aswer Is This, both your replies are doing exactly what I need. How can I mark as solved if both your solutions are great for my needs ? ..
 
Upvote 0
Hello. Thank you both very much for your help and solutions. Mr Micron and Mr My Aswer Is This, both your replies are doing exactly what I need. How can I mark as solved if both your solutions are great for my needs ? ..
Just Mark one and that will be good. Glad to know we were able to help you
 
Upvote 0
Thanks.
Hard to decide sometimes I guess but I'd say go by the one you use. If 2 or more were exactly the same solution, then first in?
What I like about calling another sub is that should you decide that the code needs to increase font size, bold it, center it, etc. then you only have to write all of that once. Using 2 subs to set the cell value, you'd have to write it twice. In your case, the only difference for the operation is yes or no, and since you need two subs because you have 2 buttons, might as well pass the decision to another sub? That's how I tend to do things.
 
Upvote 0

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

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