Change/cycle through cell values by double clicking

bparson017

New Member
Joined
Aug 20, 2017
Messages
5
Hello everyone,

Last night I asked a similar question and got an extremely helpful answer! But today, I have a different scenario. Would it be possible to double click on any cell within a range of cells (C2:C70, D2:D70, E2:E70, etc) that produces the following values and can cycle through them:

P --> Ab --> AE --> T --> T30 --> P --> Ab --> etc......

These represent attendance codes I would use for taking attendance in my classroom. If anyone could assist me with the VBA needed to make this happen, I would be extremely grateful. Thank you for your help
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
You could just use data validation.

In data validation allow: list
In source put your list separated by comas like p,Ab,AE,T,T30
Then click OK
You will then have a drop down list to pick from rather than having to click though a list to get to the one you want.
 
Upvote 0
Even though the list option that you have offered (Scott T) is totally a solution to my inquiry, I prefer the double click method because I use a tablet where the cycling isn't frequently used and all of the codes listed are in a descending order based on the frequency they appear. Also, these values commonly change as students arrive late or have documentation proving their reasoning for missing a class.
 
Upvote 0
how about
Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)

    Const sADDRESS_OF_INTEREST As String = "C2:E70"   
    
    If Not Intersect(Target, Range(sADDRESS_OF_INTEREST)) Is Nothing Then
        Cancel = True
        If Len(Target.Value) = 0 Then
            Target.Value2 = "P"
        Else
            Target.Value2 = Application.WorksheetFunction.Lookup(Target.Value2, [{"Ab", "AE", "P", "T", "T30"}], [{"AE", "T","Ab", "T30", "P"}])
        End If
    End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,215,223
Messages
6,123,727
Members
449,116
Latest member
Aaagu

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