Modificacion de codigo en excel
Experta elsa como adaptar este código si el anterior que me dio no da resultado
Sub buscar_z()
Dim i%, num As Range
i = 1
Do While Cells(i, "DO") <> ""
Set num = Range("A1:CY42").Find(Cells(i, "DO"), lookat:=xlWhole)
If Not num Is Nothing Then
With num.Borders
.LineStyle = xlContinuous
.Weight = xlMedium
End With
End If
i = i + 1
Loop
End Sub
2 respuestas
Respuesta de Elsa Matilde
1
Respuesta de jhon murcia
1