+ Reply to Thread
Results 1 to 20 of 20

Trigger Cells Code

Hybrid View

  1. #1
    Registered User
    Join Date
    03-08-2023
    Location
    United Kingdom
    MS-Off Ver
    365
    Posts
    8

    Question Trigger Cells Code

    Hello,

    I am a beginner in learning code in Excel and wonder if anybody can help me.

    I have a Trigger Cell code within the sheet code and I was wondering if there was any way to re-write this, a) to make it easier as I have to do this for 50 separate Trigger Cells, b) the macro runs quite slowly.

    Any tips or help would be greatly appreciated!

    Thank you,

    Paris

    Private Sub Worksheet_Change(ByVal Target As Range)
    
    Dim TriggerCell1 As Range
    Set TriggerCell1 = Range("F9")
    
        If TriggerCell1.Value = "SUPERDRUG HOTSPOT" Then
            Rows("10:15").Hidden = False
        Else
        Rows("10:15").Hidden = True
        End If
        
            If TriggerCell1.Value = "SUPERDRUG FSDU" Then
            Rows("16:17").Hidden = False
        Else
        Rows("16:17").Hidden = True
        End If
        
            If TriggerCell1.Value = "SUPERDRUG QFSDU" Then
            Rows("22:23").Hidden = False
            Else
        Rows("22:23").Hidden = True
        End If
        
            If TriggerCell1.Value = "SUPERDRUG GE" Then
            Rows("18:19").Hidden = False
                Else
        Rows("18:19").Hidden = True
        End If
            
            If TriggerCell1.Value = "SUPERDRUG BLIP" Then
            Rows("20:21").Hidden = False
                Else
        Rows("20:21").Hidden = True
        End If
           
    Dim TriggerCell2 As Range
    Set TriggerCell2 = Range("J9")
    
        If TriggerCell2.Value = "SUPERDRUG HOTSPOT" Then
            Rows("24:29").Hidden = False
        Else
        Rows("24:29").Hidden = True
        End If
        
            If TriggerCell2.Value = "SUPERDRUG FSDU" Then
            Rows("30:31").Hidden = False
        Else
        Rows("30:31").Hidden = True
        End If
        
            If TriggerCell2.Value = "SUPERDRUG QFSDU" Then
            Rows("32:33").Hidden = False
            Else
        Rows("32:33").Hidden = True
        End If
        
            If TriggerCell2.Value = "SUPERDRUG GE" Then
            Rows("34:35").Hidden = False
                Else
        Rows("34:35").Hidden = True
        End If
            
            If TriggerCell2.Value = "SUPERDRUG BLIP" Then
            Rows("36:37").Hidden = False
                Else
        Rows("36:37").Hidden = True
        End If
        
    Dim TriggerCell3 As Range
    Set TriggerCell3 = Range("L9")
    
        If TriggerCell3.Value = "SUPERDRUG HOTSPOT" Then
            Rows("38:43").Hidden = False
        Else
        Rows("38:43").Hidden = True
        End If
        
            If TriggerCell3.Value = "SUPERDRUG FSDU" Then
            Rows("44:45").Hidden = False
        Else
        Rows("44:45").Hidden = True
        End If
        
            If TriggerCell3.Value = "SUPERDRUG QFSDU" Then
            Rows("46:47").Hidden = False
            Else
        Rows("46:47").Hidden = True
        End If
        
            If TriggerCell3.Value = "SUPERDRUG GE" Then
            Rows("48:49").Hidden = False
                Else
        Rows("48:49").Hidden = True
        End If
            
            If TriggerCell3.Value = "SUPERDRUG BLIP" Then
            Rows("50:51").Hidden = False
                Else
        Rows("50:51").Hidden = True
        End If
           
    Dim TriggerCell4 As Range
    Set TriggerCell4 = Range("N9")
    
        If TriggerCell4.Value = "SUPERDRUG HOTSPOT" Then
            Rows("52:57").Hidden = False
        Else
        Rows("52:57").Hidden = True
        End If
        
            If TriggerCell4.Value = "SUPERDRUG FSDU" Then
            Rows("58:59").Hidden = False
        Else
        Rows("58:59").Hidden = True
        End If
        
            If TriggerCell4.Value = "SUPERDRUG QFSDU" Then
            Rows("60:61").Hidden = False
            Else
        Rows("60:61").Hidden = True
        End If
        
            If TriggerCell4.Value = "SUPERDRUG GE" Then
            Rows("62:63").Hidden = False
                Else
        Rows("62:63").Hidden = True
        End If
            
            If TriggerCell4.Value = "SUPERDRUG BLIP" Then
            Rows("64:65").Hidden = False
                Else
        Rows("65:65").Hidden = True
        End If
    
    Dim TriggerCell5 As Range
    Set TriggerCell5 = Range("P9")
    
        If TriggerCell5.Value = "SUPERDRUG HOTSPOT" Then
            Rows("66:71").Hidden = False
        Else
        Rows("66:71").Hidden = True
        End If
        
            If TriggerCell5.Value = "SUPERDRUG FSDU" Then
            Rows("72:73").Hidden = False
        Else
        Rows("72:73").Hidden = True
        End If
        
            If TriggerCell5.Value = "SUPERDRUG QFSDU" Then
            Rows("74:75").Hidden = False
            Else
        Rows("74:75").Hidden = True
        End If
        
            If TriggerCell5.Value = "SUPERDRUG GE" Then
            Rows("76:77").Hidden = False
                Else
        Rows("76:77").Hidden = True
        End If
            
            If TriggerCell5.Value = "SUPERDRUG BLIP" Then
            Rows("78:79").Hidden = False
                Else
        Rows("78:79").Hidden = True
        End If
    
    End Sub
    Last edited by davesexcel; 03-10-2023 at 11:37 AM. Reason: code tags required for vba code

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,365

    Re: Trigger Cells Code

    Fast answers need visual help. Please read the yellow banner at the top of this page on how to attach a file and a mocked up solution.
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Registered User
    Join Date
    03-08-2023
    Location
    United Kingdom
    MS-Off Ver
    365
    Posts
    8

    Re: Trigger Cells Code

    I think I've managed to add a sample workbook now
    Attached Files Attached Files

  4. #4
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,940

    Re: Trigger Cells Code

    Is there a reason that your current code makes rows 22:23 under project one visible when QFSDU is selected even though they're the BLIP rows? The others in your example seem to work in a predictable pattern, just not Project1.

    BSB

  5. #5
    Registered User
    Join Date
    03-08-2023
    Location
    United Kingdom
    MS-Off Ver
    365
    Posts
    8

    Re: Trigger Cells Code

    Great spot! It must be an error I made when writing out the row numbers. It should follow the pattern of all other projects.

    Thank you

  6. #6
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,940

    Re: Trigger Cells Code

    Assuming the question I asked above is down to a typo rather than by design, try the code below and see if it does what you need.
    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim rw As Integer
        
        If Target.Cells.Count = 1 Then
            Application.ScreenUpdating = False
            With Me
                .Rows("10:79").Hidden = False
                If Not Intersect(Target, .Range("F9:P9")) Is Nothing Then
                    If Target.Offset(1) <> "" Then
                        rw = 10
                    Else
                        rw = Target.End(xlDown).Row
                    End If
                    .Rows("10:79").Hidden = True
                    Select Case Target.Value
                        Case "SUPERDRUG HOTSPOT":   .Rows(rw & ":" & rw + 5).Hidden = False
                        Case "SUPERDRUG FSDU":      .Rows(rw + 6 & ":" & rw + 7).Hidden = False
                        Case "SUPERDRUG QFSDU":     .Rows(rw + 8 & ":" & rw + 9).Hidden = False
                        Case "SUPERDRUG GE":        .Rows(rw + 10 & ":" & rw + 11).Hidden = False
                        Case "SUPERDRUG BLIP":      .Rows(rw + 12 & ":" & rw + 13).Hidden = False
                    End Select
                End If
            End With
            Application.ScreenUpdating = True
        End If
    End Sub
    BSB

  7. #7
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,940

    Re: Trigger Cells Code

    Ignore the above suggestion, I can see a problem with that one already. Didn't think it through properly, did I!?
    I'll amend it real quick then repost.

    BSB

  8. #8
    Registered User
    Join Date
    03-08-2023
    Location
    United Kingdom
    MS-Off Ver
    365
    Posts
    8

    Re: Trigger Cells Code

    BSB you are brilliant! Thank you so much!

    I do have a couple of questions if you don't mind me picking your brain?

    1. If I select 'Blip' in any of the drop downs, and then decide I no longer need that project so clear the contents of the cell in row 9, is there a way to make the rows hidden again, as at the moment they stay unhidden?

    2. Is there a way to have 5 projects unhidden at once? So for instance, if Project 1 is an FSDU, and project 2 is a QFSDU, is there a way to unhide both the FSDU row in project 1, and the QFSDU rows in project 2?

    Hope that makes sense!

    Thank you so much

    Psris

  9. #9
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,940

    Re: Trigger Cells Code

    Question 1 I can add in.

    Question 2 is the problem I could see with my fist suggestion and am fixing now.

    BSB

  10. #10
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,940

    Re: Trigger Cells Code

    This should solve question 2.
    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim rw As Integer
        
        If Target.Cells.Count = 1 Then
            Application.ScreenUpdating = False
            With Me
                If Not Intersect(Target, .Range("F9:P9")) Is Nothing Then
                    Select Case Target.Offset(-1).Value
                        Case "PROJECT 1": rw = 10
                        Case "PROJECT 2": rw = 24
                        Case "PROJECT 3": rw = 38
                        Case "PROJECT 4": rw = 52
                        Case "PROJECT 5": rw = 66
                    End Select
                    
                    .Rows(rw & ":" & rw + 13).Hidden = True
                    
                    Select Case Target.Value
                        Case "SUPERDRUG HOTSPOT":   .Rows(rw & ":" & rw + 5).Hidden = False
                        Case "SUPERDRUG FSDU":      .Rows(rw + 6 & ":" & rw + 7).Hidden = False
                        Case "SUPERDRUG QFSDU":     .Rows(rw + 8 & ":" & rw + 9).Hidden = False
                        Case "SUPERDRUG GE":        .Rows(rw + 10 & ":" & rw + 11).Hidden = False
                        Case "SUPERDRUG BLIP":      .Rows(rw + 12 & ":" & rw + 13).Hidden = False
                    End Select
                End If
            End With
            Application.ScreenUpdating = True
        End If
    End Sub
    I can solve Q1 too, but getting rushed out the door to take the family to dinner now so will have to revisit later if nobody else has provided a solution in the mean time.
    Not difficult to do, just run out of time. SORRY!

    BSB

  11. #11
    Registered User
    Join Date
    03-08-2023
    Location
    United Kingdom
    MS-Off Ver
    365
    Posts
    8

    Re: Trigger Cells Code

    Thank you so much! I really appreciate your help.

    Enjoy the family dinner too

  12. #12
    Forum Expert
    Join Date
    05-29-2020
    Location
    NH USA
    MS-Off Ver
    365
    Posts
    2,103

    Re: Trigger Cells Code

    I updated BSB's code to include one line to unhide all the respective rows when the target cell is blank. It's work more consistently if the data source is updated to include a blank cell, i.e source =Sheet2!$A$2:$A$7

    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim rw As Integer
        
        If Target.Cells.Count = 1 Then
            Application.ScreenUpdating = False
            With Me
                If Not Intersect(Target, .Range("F9:P9")) Is Nothing Then
                    Select Case Target.Offset(-1).Value
                        Case "PROJECT 1": rw = 10
                        Case "PROJECT 2": rw = 24
                        Case "PROJECT 3": rw = 38
                        Case "PROJECT 4": rw = 52
                        Case "PROJECT 5": rw = 66
                    End Select
                    
                    .Rows(rw & ":" & rw + 13).Hidden = True
                    
                    Select Case Target.Value
                        Case "SUPERDRUG HOTSPOT":   .Rows(rw & ":" & rw + 5).Hidden = False
                        Case "SUPERDRUG FSDU":      .Rows(rw + 6 & ":" & rw + 7).Hidden = False
                        Case "SUPERDRUG QFSDU":     .Rows(rw + 8 & ":" & rw + 9).Hidden = False
                        Case "SUPERDRUG GE":        .Rows(rw + 10 & ":" & rw + 11).Hidden = False
                        Case "SUPERDRUG BLIP":      .Rows(rw + 12 & ":" & rw + 13).Hidden = False
                        Case "":                    .Rows(rw & ":" & rw + 13).Hidden = False
                    End Select
                End If
            End With
            Application.ScreenUpdating = True
        End If
    End Sub

  13. #13
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,940

    Re: Trigger Cells Code

    Quote Originally Posted by maniacb View Post
    I updated BSB's code to include one line to unhide all the respective rows when the target cell is blank. It's work more consistently if the data source is updated to include a blank cell, i.e source =Sheet2!$A$2:$A$7
    @maniacb - Thanks for picking this up. You are indeed corrcect that it will not work without adding a blank cell to the drop down list. For others that may stumble across this in the future I'd like to explain why, as it will not be the case for all.

    In the instance of the sample file above it is a problem because of "merged cells" (avoid them like the provebial plague ladies and gents!).
    As the target in this case is a merged cell, when testing how many cells are being changed (If Target.Cells.Count = 1), when a user changes the value via the drop down list it will count as 1 cell, even though merged to 2 cells, however, if you change the value to nothing by hitting the delete key, Excel will count the target as 2 cells.

    If you add the "blank" option to the dropdown list you can avoid this as it will be counted as 1 cell changing, but you cannot guarantee the user will do that every time. Personally if I wanted to clear a cell I would automatically hit Delete rather than use a drop down list.

    @Paris050512 - If you need the code adjusted to account for the above user inconsistency, let me know and I'll rewrite the code to account for it.

    BSB

  14. #14
    Forum Expert
    Join Date
    05-29-2020
    Location
    NH USA
    MS-Off Ver
    365
    Posts
    2,103

    Re: Trigger Cells Code

    Assuming you will be expanding the sheet for up to 10 promo sections with the same rows within each section, try this code:

    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim rw As Integer, pr As Integer, r As Integer
        
        If Target.Cells.Count = 1 Then
            Application.ScreenUpdating = False
            pr = Target.Row
            Select Case Cells(Target.Row - 2, 6).Value
                        Case "PROMO 1": r = 0
                        Case "PROMO 2": r = 74
                        Case "PROMO 3": r = 149
                        Case "PROMO 4": r = 224
                        Case "PROMO 5": r = 299
                        Case "PROMO 6": r = 374
                        Case "PROMO 7": r = 449
                        Case "PROMO 8": r = 524
                        Case "PROMO 9": r = 599
                        Case "PROMO 10": r = 674
                    End Select
            With Me
                If Not Intersect(Target, .Range("F" & r + 9 & ":P" & r + 9)) Is Nothing Then
                    Select Case Target.Offset(-1).Value
                        Case "PROJECT 1": rw = 10 + r
                        Case "PROJECT 2": rw = 24 + r
                        Case "PROJECT 3": rw = 38 + r
                        Case "PROJECT 4": rw = 52 + r
                        Case "PROJECT 5": rw = 66 + r
                    End Select
                    
                    .Rows(rw & ":" & rw + 13).Hidden = True
                    
                    Select Case Target.Value
                        Case "SUPERDRUG HOTSPOT":   .Rows(rw & ":" & rw + 5).Hidden = False
                        Case "SUPERDRUG FSDU":      .Rows(rw + 6 & ":" & rw + 7).Hidden = False
                        Case "SUPERDRUG QFSDU":     .Rows(rw + 8 & ":" & rw + 9).Hidden = False
                        Case "SUPERDRUG GE":        .Rows(rw + 10 & ":" & rw + 11).Hidden = False
                        Case "SUPERDRUG BLIP":      .Rows(rw + 12 & ":" & rw + 13).Hidden = False
                        Case "":                    .Rows(rw & ":" & rw + 13).Hidden = False
                    End Select
                End If
            End With
            Application.ScreenUpdating = True
        End If
    End Sub

  15. #15
    Registered User
    Join Date
    03-08-2023
    Location
    United Kingdom
    MS-Off Ver
    365
    Posts
    8

    Re: Trigger Cells Code

    Thank you both so much, you have both been a great help!

    I do have other questions, but understand I've taken a lot of your resource already, so don't feel obliged to help!

    At the moment I have Promo 1 with drop downs for 'Superdrug Hotspot' 'Superdrug Blip' etc, however promo 2 will have different drop down options, i.e. 'Boots Hotspot' 'Boots FSDU' and then promo 3 with be a similar format with 'Tesco Hotspot' 'Tesco FSDU' etc, how can I adapt this code so that each promo line can have different drop downs, and therefore unhide the relevant lines required?

    All projects 1 - 5 will have the same drop down list within each promo - I think I may be over complicating this, but there are so many variables!

    Thank you!

  16. #16
    Forum Expert
    Join Date
    05-29-2020
    Location
    NH USA
    MS-Off Ver
    365
    Posts
    2,103

    Re: Trigger Cells Code

    Assuming the second word is consistent throughout your drop downs, try the following option.

    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim rw As Integer, pr As Integer, r As Integer
        
        If Target.Cells.Count = 1 Then
            Application.ScreenUpdating = False
            pr = Target.Row
            Select Case Cells(Target.Row - 2, 6).Value
                        Case "PROMO 1": r = 0
                        Case "PROMO 2": r = 74
                        Case "PROMO 3": r = 149
                        Case "PROMO 4": r = 224
                        Case "PROMO 5": r = 299
                        Case "PROMO 6": r = 374
                        Case "PROMO 7": r = 449
                        Case "PROMO 8": r = 524
                        Case "PROMO 9": r = 599
                        Case "PROMO 10": r = 674
                    End Select
            With Me
                If Not Intersect(Target, .Range("F" & r + 9 & ":P" & r + 9)) Is Nothing Then
                    Select Case Target.Offset(-1).Value
                        Case "PROJECT 1": rw = 10 + r
                        Case "PROJECT 2": rw = 24 + r
                        Case "PROJECT 3": rw = 38 + r
                        Case "PROJECT 4": rw = 52 + r
                        Case "PROJECT 5": rw = 66 + r
                    End Select
                    
                    .Rows(rw & ":" & rw + 13).Hidden = True
                    
                    Select Case True
                        Case Target.Value Like "*HOTSPOT":  .Rows(rw & ":" & rw + 5).Hidden = False
                        Case Target.Value Like "*FSDU":     .Rows(rw + 6 & ":" & rw + 7).Hidden = False
                        Case Target.Value Like "*QFSDU":    .Rows(rw + 8 & ":" & rw + 9).Hidden = False
                        Case Target.Value Like "*GE":       .Rows(rw + 10 & ":" & rw + 11).Hidden = False
                        Case Target.Value Like "*BLIP":     .Rows(rw + 12 & ":" & rw + 13).Hidden = False
                        Case "":                            .Rows(rw & ":" & rw + 13).Hidden = False
                    End Select
                End If
            End With
            Application.ScreenUpdating = True
        End If
    End Sub

  17. #17
    Registered User
    Join Date
    03-08-2023
    Location
    United Kingdom
    MS-Off Ver
    365
    Posts
    8

    Re: Trigger Cells Code

    Thank you for coming back so quickly. The data isn't consistent between the promo's, so I think I'm asking perhaps something that is unachievable? (I'm not the expert!)

    I have attached a sample workbook again which I think shows more in depth what I'm after. I think when you see it you will realise why I went with the 'trigger cells' code I initially had, but that wasn't a great solution.

    Perhaps I need to look at simplifying the way the data is inputted rather than try to figure a way to make the existing sheet work - what do you think?

    Thank you
    Attached Files Attached Files

  18. #18
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,940

    Re: Trigger Cells Code

    It would probably be helpful if we could better understand what the file is used for as there could be a much easier way altogether.

    For example, what are the staggered lists under each project header used for? Why are they laid out that way?
    Perhaps it would be easier to have Excel stamp a list of values into the rows when the cell value changes rather than all this showing/hiding of rows.

    BSB

  19. #19
    Registered User
    Join Date
    03-08-2023
    Location
    United Kingdom
    MS-Off Ver
    365
    Posts
    8

    Re: Trigger Cells Code

    Thanks BSB, I agree, there must be a better, easier way for this to work. I don't know how to show you exactly without showing confidential data that I can't put onto a public webpage.

    Let me see if I can figure a way.

    Thank you!

  20. #20
    Forum Expert
    Join Date
    05-29-2020
    Location
    NH USA
    MS-Off Ver
    365
    Posts
    2,103

    Re: Trigger Cells Code

    Here is one way to solve the issue if you want to continue with the original design approach.

    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim rw As Integer, pr As Integer, r As Integer, cl As Integer
        
        If Target.Cells.Count = 1 Then
            Application.ScreenUpdating = False
            a = Sheets("Sheet2").[A1].CurrentRegion
            a = Application.Transpose(a)
            pr = Target.Row
            Select Case Cells(Target.Row - 2, 6).Value
                        Case "PROMO 1": r = 0: cl = 1
                        Case "PROMO 2": r = 74: cl = 2
                        Case "PROMO 3": r = 149: cl = 3
                        Case "PROMO 4": r = 224: cl = 4
                        Case "PROMO 5": r = 299: cl = 5
                        Case "PROMO 6": r = 374: cl = 6
                        Case "PROMO 7": r = 449: cl = 7
                        Case "PROMO 8": r = 524: cl = 8
                        Case "PROMO 9": r = 599: cl = 9
                        Case "PROMO 10": r = 674: cl = 10
                    End Select
            With Me
                If Not Intersect(Target, .Range("F" & r + 9 & ":P" & r + 9)) Is Nothing Then
                    Select Case Target.Offset(-1).Value
                        Case "PROJECT 1": rw = 10 + r
                        Case "PROJECT 2": rw = 24 + r
                        Case "PROJECT 3": rw = 38 + r
                        Case "PROJECT 4": rw = 52 + r
                        Case "PROJECT 5": rw = 66 + r
                    End Select
                    
                    .Rows(rw & ":" & rw + 13).Hidden = True
                    
                    Select Case Target.Value
                        Case a(cl, 2): .Rows(rw & ":" & rw + 5).Hidden = False
                        Case a(cl, 3):     .Rows(rw + 6 & ":" & rw + 7).Hidden = False
                        Case a(cl, 4):     .Rows(rw + 8 & ":" & rw + 9).Hidden = False
                        Case a(cl, 5):     .Rows(rw + 10 & ":" & rw + 11).Hidden = False
                        Case a(cl, 6):     .Rows(rw + 12 & ":" & rw + 13).Hidden = False
                        Case Else:         .Rows(rw & ":" & rw + 13).Hidden = False
                    End Select
                End If
            End With
            Application.ScreenUpdating = True
        End If
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Trigger code when I calc
    By aresquare1 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 04-17-2015, 08:04 AM
  2. Adjust a code from cell range trigger to button trigger
    By ld2x07 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-01-2014, 10:02 AM
  3. [SOLVED] Trigger Code by Dropdown
    By rachaelgoldman1 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-07-2013, 10:31 AM
  4. Trigger code by Drop Down
    By rachaelgoldman1 in forum Excel General
    Replies: 1
    Last Post: 09-06-2013, 03:02 PM
  5. Allow code to run once then not until it's trigger value appears again
    By ozhunter in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 03-18-2013, 08:04 AM
  6. How to trigger code execution?
    By alwaysgo in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-11-2008, 09:11 AM
  7. [SOLVED] Trigger Event Code
    By Shawn in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-14-2005, 10:05 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1