Saltar al contenido
View in the app

A better way to browse. Learn more.

Ayuda Excel

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Como Ejecutar complemento de excel desde una macro

publicado

Hola, tengo una macro que me abre un archivo xlam para poder cargarlo en Excel.
Ccomo puedo abrir ese complemento desde la misma macro para que puedan utilizarlo, y al finalizar la funcionalidad del complemento como puedo seguir con otros procesos.

Sub PortalPago()
    'Funciones de Macro No Visibles
    Application.ScreenUpdating = False
    
    Dim Finfo As String
    Dim FilterIndex As Long
    Dim Title As String
    Dim FileName As Variant
    
    'Configura filtro de Archivos
    Finfo = "Complemento Excel (*.xlam),*.xlam"
    FilterIndex = 1
    
    'Establecer el título del cuadro de diálogo
    Title = "Seleccione un archivo Complemente Excel"
    
    'Obtiene nombre de Archivo
    FileName = Application.GetOpenFilename(Finfo, FilterIndex, Title)
    
    'Validacion
    If FileName = False Then
        MsgBox "No hay Archivos Seleccionados"
        Call PortalPago
    Else
        Workbooks.Open FileName
        MsgBox "Complemento Cargado Correctamente"
        Application.Run "'Consolidar Datos (DATA).xlam'!RunRDBMergeForm"
    End If
    
End Sub

 

Featured Replies

No hay posts para mostrar

Archivado

Este tema está ahora archivado y está cerrado a más respuestas.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.