Modificación de macro de excel buscar numero
Para dante amor
Señor dante es para modificar esta macro que en vez de colocar la hoja donde se encuentra el numero mejor me coloque el primer numero de la columna donde se encuentra muchas gracias
Sub BuscarNumero()
'Por.Dante Amor
Dim u As Double, i As Double
Dim h1 As Object
Dim h As Integer
Dim cad As String
Dim b As Object
'
Application.ScreenUpdating = False
Application.StatusBar = False
Set h1 = Sheets("Hoja11")
'
h1.Columns("CC").ClearContents
u = h1.Range("CB" & Rows.Count).End(xlUp).Row
For i = 1 To u
Application.StatusBar = "Procesando registro: " & i & " de: " & u
cad = ""
For h = 1 To 10
Set b = Sheets(h).UsedRange.Find(h1.Cells(i, "CB"), lookat:=xlWhole, LookIn:=xlValues)
If Not b Is Nothing Then
cad = cad & ", " & Sheets(h).Name
End If
Next
h1.Cells(i, "CC") = cad
Next
Application.ScreenUpdating = True
Application.StatusBar = False
MsgBox "Fin"
End Sub