populate a range ("a3:h40") into listbox if cell in column "H" is interior.colorindex = 3.

BRB1983

Board Regular
Joined
Aug 29, 2019
Messages
61
i want to populate information from range("A3:H40") to listbox only if Cell in Column("H") is colored red. the provided code list them all, even when a cell in column h is not red.
VBA Code:
Dim lbtarget As MSForms.ListBox
Dim rngSource As Range
Set rngSource = Sheet1.Range("A3:H19")
Dim RNG As Range
Set RNG = Sheet1.Range("H3:H19")
Dim Cell As Range

Set lbtarget = Me.ListBox1
    With lbtarget
        .ColumnCount = 8
        .ColumnWidths = "100;100;100;100;100;100;60;60"
    For Each Cell In RNG
        If Cell.Interior.ColorIndex = 3 Then
      
        .List = rngSource.Cells.value
        End If
        Next
    End With
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
If you are going to load only the rows where the cell in column H is red, then try the following:

VBA Code:
Private Sub UserForm_Activate()
  Dim RngSource As Range, Cell As Range
  Set RngSource = Sheet1.Range("A3:H19")
 
  With ListBox1
    .ColumnCount = 8
    .ColumnWidths = "100;100;100;100;100;100;60;60"
    For Each Cell In RngSource.Columns(8).Rows
      If Cell.Interior.ColorIndex = 3 Then
        .AddItem
        .List(.ListCount - 1, 0) = RngSource.Cells(Cell.Row - 2, "A")
        .List(.ListCount - 1, 1) = RngSource.Cells(Cell.Row - 2, "B")
        .List(.ListCount - 1, 2) = RngSource.Cells(Cell.Row - 2, "C")
        .List(.ListCount - 1, 3) = RngSource.Cells(Cell.Row - 2, "D")
        .List(.ListCount - 1, 4) = RngSource.Cells(Cell.Row - 2, "E")
        .List(.ListCount - 1, 5) = RngSource.Cells(Cell.Row - 2, "F")
        .List(.ListCount - 1, 6) = RngSource.Cells(Cell.Row - 2, "G")
        .List(.ListCount - 1, 7) = RngSource.Cells(Cell.Row - 2, "H")
      End If
    Next
  End With
End Sub

Or this:

VBA Code:
Private Sub UserForm_Activate()
  Dim RngSource As Range, Cell As Range
  Set RngSource = Sheet1.Range("A3:H19")
 
  With ListBox1
    .ColumnCount = 8
    .ColumnWidths = "100;100;100;100;100;100;60;60"
    For Each Cell In RngSource.Columns(8).Rows
      If Cell.Interior.ColorIndex = 3 Then
        .AddItem
        .List(.ListCount - 1, 0) = Cell.Offset(, -7)
        .List(.ListCount - 1, 1) = Cell.Offset(, -6)
        .List(.ListCount - 1, 2) = Cell.Offset(, -5)
        .List(.ListCount - 1, 3) = Cell.Offset(, -4)
        .List(.ListCount - 1, 4) = Cell.Offset(, -3)
        .List(.ListCount - 1, 5) = Cell.Offset(, -2)
        .List(.ListCount - 1, 6) = Cell.Offset(, -1)
        .List(.ListCount - 1, 7) = Cell
      End If
    Next
  End With
End Sub

Or this

VBA Code:
Private Sub UserForm_Activate()
  Dim RngSource As Range, Cell As Range, j As Long
  Set RngSource = Sheet1.Range("A3:H19")
 
  With ListBox1
    .ColumnCount = 8
    .ColumnWidths = "100;100;100;100;100;100;60;60"
    For Each Cell In RngSource.Columns(8).Rows
      If Cell.Interior.ColorIndex = 3 Then
        .AddItem
        For j = 0 To 7
          .List(.ListCount - 1, j) = RngSource.Cells(Cell.Row - 2, j + 1)
        Next
      End If
    Next
  End With
End Sub
 
Upvote 0
How about:

VBA Code:
Private Sub UserForm_Activate()
  Dim RngSource As Range, Cell As Range, j As Long
  Dim arrResults, n As Long
  Set RngSource = Sheet1.Range("A3:H19")
 
  ReDim arrResults(1 To RngSource.Rows.Count, 1 To 8)
  With ListBox1
    .ColumnCount = 8
    .ColumnWidths = "100;100;100;100;100;100;60;60"
    n = 1
    For Each Cell In RngSource.Columns(8).Rows
      If Cell.Interior.ColorIndex = 3 Then
        arrResults(n, 1) = Cell.Offset(, -7)
        arrResults(n, 2) = Cell.Offset(, -6)
        arrResults(n, 3) = Cell.Offset(, -5)
        arrResults(n, 4) = Cell.Offset(, -4)
        arrResults(n, 5) = Cell.Offset(, -3)
        arrResults(n, 6) = Cell.Offset(, -2)
        arrResults(n, 7) = Cell.Offset(, -1)
        arrResults(n, 8) = Cell
        n = n + 1
      End If
    Next
    .List = arrResults
  End With
End Sub
 
Upvote 0
I'm glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,636
Messages
6,120,666
Members
448,977
Latest member
moonlight6

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