Tengo esta Macro para que en un rango de celdas ordenadas por valor en una columna, seleccionar por el valor 10
La Macro es:
Sub BuscarDatos_Española()
Call comenzar_las_macros_así
Dim ValorBuscado As String
Dim CeldaSuperior As Long, CeldaInferior As Long
Dim Buscar As Range
Let ValorBuscado = "10"
With Range("E10:E175")
Set Buscar = .Find(ValorBuscado, , , , , xlNext)
If Not Buscar Is Nothing Then
Let CeldaSuperior = Buscar.Row
End If
Set Buscar = Nothing
Set Buscar = .Find(ValorBuscado, , , , , xlPrevious)
If Not Buscar Is Nothing Then
Let CeldaInferior = Buscar.Row
End If
End With
Range("B" & CeldaSuperior & ":" & "E" & CeldaInferior).Copy Destination:=Sheets("Mejores").Range("V27")
End Sub
Y necesito rectificarla para que me seleccione los valores, van todos seguidos, desde el 8, 8,5, 9, 9,5, 10.
Osea todos los valores entre 8 y el 10
1 Respuesta
Respuesta de James Bond
1