Utilizar rangos como parametros opciones - Funciones vba
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
Public Function testfuncion(S As String, Optional R As Range = Nothing) As String testfuncion = S if not R is nothing then For Each cell In R testfuncion = testfuncion & cell Next cell end if End Function