+ Reply to Thread
Results 1 to 3 of 3

Nested For Each loops

Hybrid View

  1. #1
    Registered User
    Join Date
    06-19-2015
    Location
    Michigan
    MS-Off Ver
    2010
    Posts
    30

    Nested For Each loops

    Hello!

    I am trying to write a macro to loop through a bunch of worksheets and will perform another set of loops if a condition is met.
    Here is my macro so far:
    Sub test()
    
    Dim ws As Worksheet
    For Each ws In ActiveWorkbook.Worksheets
        If IsEmpty(range("a1").Value) = False Then 'If range A1 is /not/ empty, then perform these loops
            
            Dim c As range
            range("d3:x115").Name = "Rng"
                For Each c In range("Rng")
                    If c.Interior.Color = RGB(166, 77, 121) Then 'If it’s colored then
                        If c Like "*#*" Then c.Offset(, 5) = c + 1 'check if has a date entered
                            If c.Offset(, 5).Interior.ColorIndex = xlNone Then c.Offset(28, -20) = c + 3 'if no fill then go to next week
                        End If
                    
                    Next
        range("d143").ClearContents
        On Error Resume Next 'If range A1 /is/ empty, then go to the next worksheet
    End If
    Next ws
    
    End Sub
    As of now, everything functions perfectly, except it only performs the loops on one worksheet and not through all of them. I need it to check if the active worksheet has text in cell A1, and if it does, then to perform the loops through "Rng". Whether or not A1 has text, it should go to the next worksheet after everything is done.

    Any ideas?

  2. #2
    Forum Expert
    Join Date
    12-15-2009
    Location
    Chicago, IL
    MS-Off Ver
    Microsoft Office 365
    Posts
    3,177

    Re: Nested For Each loops

    You need to specify the worksheet when you referring to a range. Give this a try
    Sub test()
    
    Dim ws As Worksheet
    For Each ws In ActiveWorkbook.Worksheets
        If IsEmpty(ws.Range("a1").Value) = False Then 'If range A1 is /not/ empty, then perform these loops
            
            Dim c As Range
            ws.Range("d3:x115").Name = "Rng"
                For Each c In ws.Range("Rng")
                    If c.Interior.Color = RGB(166, 77, 121) Then 'If it’s colored then
                        If c Like "*#*" Then c.Offset(, 5) = c + 1 'check if has a date entered
                            If c.Offset(, 5).Interior.ColorIndex = xlNone Then c.Offset(28, -20) = c + 3 'if no fill then go to next week
                        End If
                    
                    Next
        ws.Range("d143").ClearContents
        On Error Resume Next 'If range A1 /is/ empty, then go to the next worksheet
    End If
    Next ws
    
    End Sub

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Nested For Each loops

    Maybe ...

    Sub test()
      Dim wks           As Worksheet
      Dim cell          As Range
    
      For Each wks In Worksheets
        If Not IsEmpty(wks.Range("A1").Value) Then
          For Each cell In wks.Range("D3:X115")
            With cell
              If .Interior.Color = RGB(166, 77, 121) Then
                If .Value Like "*#*" Then .Offset(, 5).Value = .Value + 1
                If .Offset(, 5).Interior.ColorIndex = xlColorIndexNone Then .Offset(28, -20).Value = .Value + 3
              End If
            End With
          Next cell
          wks.Range("D143").ClearContents
        End If
      Next wks
    End Sub
    Entia non sunt multiplicanda sine necessitate

+ 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. Nested Loops
    By asdasdasdadw in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 03-24-2014, 02:30 PM
  2. [SOLVED] Nested IF loops More than 7 Need Help
    By EricSomin in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-31-2013, 02:25 PM
  3. [SOLVED] Help with nested loops
    By wishmaker in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-23-2013, 11:03 AM
  4. nested loops
    By short_n_curly in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-22-2012, 11:10 AM
  5. Nested loops VBA
    By zurich in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-06-2012, 03:21 PM
  6. Nested Do Loops
    By ross88guy in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-08-2010, 09:10 AM
  7. Nested Loops
    By Rick_Stanich in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-11-2009, 04:14 PM
  8. Many Nested loops
    By naterator in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 06-19-2006, 05:45 PM

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