VBA - modificar hoja de cálculo desde macros
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
Dim xl: Set xl = CreateObject("Excel.Application") xl.Open "\\the\share\archivo.xls" Dim ws: Set ws = xl.Worksheets(1) ws.Cells(0,1).Value = "Valor Modificado" ws.Save xl.Quit constSilent