AB1571

New Member
Joined
Dec 3, 2018
Messages
1
I am creating a rather small excel sheet. Only 4 columns, but it will become quite lengthy. I need a check box in it to use as the case goes to Appeal status. So, what I would like to do is for that check box, which I will have in column 1A. But once I enter a name in column 1B, I would like a new check box entered in row 2a. Is hat possible? Or do I have to manually enter that check box every time?



I am sure this is a super simple question.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Hi,

If you right click sheet name, click on view code and paste this
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("B:B")) Is Nothing Then
     
    ActiveSheet.CheckBoxes.Add(Cells(Target.Row + 1, "A").Left, Cells(Target.Row + 1, "A").Top, Cells(Target.Row + 1, "A").Width, Cells(Target.Row + 1, "A").Height).Select
        With Selection
        .Caption = ""
        .Value = xlOff
        .LinkedCell = "A" & Target.Row + 1
        .Display3DShading = False
        End With
    End If
End Sub

You will get a checkbox in A row+1 if you enter a value in column B. The checkbox is linked to its cell (so when you click a checkbox in A3, it will write true or false in A3). Easier is to get column A a wite font for user not to see it.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,545
Messages
6,131,286
Members
449,641
Latest member
paulabrink78

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