Funcion excel similar a Find de vba ?
Para Dante Amor ...
Master, buenos dias... Necesito por favor me pudieras ayudar con el siguiente problema, te explico la situacion en modo VBA, para que me entiendan lo que necesito hacer, pero en modo excel.
set h = sheets("empleador")
Set b = h.Range("A:A").Find(ComboBox1, lookat:=xlWhole)
If Not b Is Nothing Then
Set c = h.Range(h.cells(b.row,1),h.cells(b.row,1000)).Find("BONO PASAJES", lookat:=xlWhole)
If Not c Is Nothing Then
Sheets("listas").range("j50") = h.cells(b.row,c.column+10)
end if
end if
Ej. Buscar "SOCIEDAD TODOEXPERTOS LIMITADA" dentro de la hoja "empleadores"
Ya teniendo la fila donde está "SOCIEDAD TODOEXPERTOS LIMITADA" hago otra busqueda de "BONO PASAJES", y cuando encuentre esta celda, obtener finalmente el valor de la misma fila, pero 10 columnas más. Que sería el valor del "BONO PASAJES".