Sub imagenes()
Dim cantidad As Integer
'Seleccionar el primer registro donde se encuentran los datos
Range("B3").Select
'Selecciona hasta el último registro donde se encuentra
Range(Selection, Selection.End(xlDown)).Select
If TypeName(Selection) = "Range" Then
'contar la cantidad de registros contados
cantidad = Selection.Count
End If
'agregar la cantidad de hojas según los registros seleccionados
For i = 1 To cantidad
Sheets.Add After:=Sheets(Sheets.Count)
Sheets(Sheets.Count).Select
Sheets(Sheets.Count).Name = "NombreCampo" + CStr(i)
Next i
End Sub