FindNumbers secundário ()
strColumn = “A”
intStartRow = 1
Ajustar o objLastSheet = as folhas (Sheets.Count)
Para o intRow = o intStartRow a objLastSheet.Cells (65536, strColumn). Extremidade (xlUp). Fileira
strValue = objLastSheet.Cells (intRow, strColumn). Valor
strFoundSheet = ""
Para o intSheet = 1 a Sheets.Count - 1
Folhas (intSheet). Ativar
Ajustar o objCell = o Cells.Find (que: =strValue, em seguida: =Sheets (intSheet). Pilhas (1, 1), LookIn: =xlValues, LookAt: =xlWhole, SearchOrder: =xlByRows, SearchDirection: =xlNext, MatchCase: =False, SearchFormat: =False)
Se não o objCell não é nada então
strFoundSheet = folhas (intSheet). Nome
Retirar para
Terminar se
Em seguida
Se "" <> do strFoundSheet então
objLastSheet.Cells (intRow, strColumn). Offset (0, 1). Valor = strFoundSheet
Mais
objLastSheet.Cells (intRow, strColumn). Offset (0, 1). Interior.Color = 255
Terminar se
Em seguida
objLastSheet.Activate
Submarino da extremidade
|