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

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
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,213,536
Messages
6,114,215
Members
448,554
Latest member
Gleisner2

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