martes, 15 de enero de 2019

INICIAL EXCEL EN UNA NUEVA INSTANCIA (EJ PARA HACER OTRAS COSAS MIENTRAS CORRES UN MACRO)

Copiado de https://excelgorilla.com/excel/general/open-multiple-instances-excel/

1. Alt + Click Abrir

Click Derecho en Icono de Excel, cuando salga el menu busca tu archivo o excel y presiona alt luego click 
izquierdo

2. Ejecutar con Run
Tecla Windows (Banderita al lado del Alt Izq)
+ R, y en cuadro ejecutar escribes Excel.exe /x

3. Use VBA
Codigo VBA Macro
Sub OpenNewExcelInstance()
 
Dim xlApp As Excel.Application
Set xlApp = New Excel.Application
xlApp.Workbooks.Add
xlApp.Visible = True
Set xlApp = Nothing
 
End Sub

4. Editar el registro (Registry) con regedit

  • Cierra todo excel
  • Abrir regedit.
  • Busca HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Excel\Options.
  • Agregar Valor DWord "DisableMergeInstance" agrega valor 1

No hay comentarios.:

Publicar un comentario