I have this code right here and for some reason it doesn't work
Public Sub CommandButton3_Click()
'agregar'
ComboBox2.Value = sel
For i = 2 To 200
celda = ActiveCell.Row
Add = Worksheets("Programación").Cells(i, 2)
If sel = Add Then
Sheets("Programación").Activate
Sheets("Programación").Select
Tipo = Sheets("Programación").Cells(i, 3).Text
Expl = Sheets("Programación").Cells(i, 4).Text
Recom = Sheets("Programación").Cells(i, 5).Text
Vul = Sheets("Programación").Cells(i, 6).Text
Ame = Sheets("Programación").Cells(i, 7).Text
Rie = Sheets("Programación").Cells(i, 8).Text
HA = Sheets("Programación").Cells(i, 2).Text
Sheets("Matriz_de_Hallazgos").Activate
Sheets("Matriz_de_Hallazgos").Select
Sheets("Matriz_de_Hallazgos").Cells(celda, 2) = Tipo
Sheets("Matriz_de_Hallazgos").Cells(celda, 4) = HA
Sheets("Matriz_de_Hallazgos").Cells(celda, 5) = Expl
Sheets("Matriz_de_Hallazgos").Cells(celda, 6) = Vul
Sheets("Matriz_de_Hallazgos").Cells(celda, 7) = Ame
Sheets("Matriz_de_Hallazgos").Cells(celda, 8) = Rie
Sheets("Matriz_de_Hallazgos").Cells(celda, 9) = Recom
celda = celda + 1
Sheets("Matriz_de_Hallazgos").Cells(celda, 4).Select
i = 201
End If
Next i
ComboBox2.Clear
End Sub
The thing that I'm trying to do is that the macro searches for the same combobox text inside the "Programación" worksheet, if the text is the same then it saves some text categories and pastes them on the "Matriz de Hallazgos" sheet, just like search, look if equal, copy and paste. I would be of great help if you guys could give me some advice