Modificar Macro para que se detenga al encontrar campo vacío
Tengo el siguiente código
If Nombre3 <> " " Then Nombre = Nombre1 & Nombre2 & Nombre3 End If If Nombre4 <> " " Then Nombre = Nombre1 & Nombre2 & Nombre3 & Nombre4 End If If Nombre5 <> " " Then Nombre = Nombre1 & Nombre2 & Nombre3 & Nombre4 & Nombre5 End If If Nombre6 <> " " Then Nombre = Nombre1 & Nombre2 & Nombre3 & Nombre4 & Nombre5 & Nombre6 End If If Nombre7 <> " " Then Nombre = Nombre1 & Nombre2 & Nombre3 & Nombre4 & Nombre5 & Nombre6 & Nombre7 End If If Nombre8 <> " " Then Nombre = Nombre1 & Nombre2 & Nombre3 & Nombre4 & Nombre5 & Nombre6 & Nombre7 & Nombre8 End If
Quiero modificar esta macro para cuando encuentre el campo vacío, sea en nombre3, nombre4 o cualquier otro se detenga y no siga calculando pues me daña otras lógicas que tengo
1 Respuesta
Respuesta de Dante Amor
1