Podcast 1871 - 200 Checkboxes in Excel - Question?

Hearntexas

New Member
Joined
Jan 7, 2016
Messages
2
Hello Mr Excel,

Great training video!! Thank you.

I'm wanting to do something similar to the checklist you created in this podcast, but I want the checklist in column G,H, &I. I got it to work on column G, but how can I get it to work in all 3 columns in the same spreadsheet?

This spread sheet is a list of invoices and I what one column for entered, one for verified, and one for approved. Then we would put a check mark in the column as each task is completed.

Any help would be greatly appreciated!!

Thanks
Hearntexas
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Mr Excel is not often here

You will see I have used or to get the columns if you want answers inbetween then 1 or 3 or 5 etc

Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    If Target.Column = 1 Or Target.Column = 2 Or Target.Column = 3 Then
        If Target.Value = Chr(254) Then
            Target.Value = Chr(168)
            Cancel = True
        ElseIf Target.Value = Chr(168) Then
            Target.Value = Chr(254)
            Cancel = True
        End If
    End If
    
End Sub
 

Forum statistics

Threads
1,215,088
Messages
6,123,057
Members
449,091
Latest member
ikke

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