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.

Avisos en outlock

publicado

Buenas, tengo un listado de cumpleaños de mi trabajo y debo desearles felicidades en su día pero no se como exportar esa lista a Outlook

Featured Replies

publicado

Zibras,

Te paso el código de un procedimiento para agregar un recordatorio en Outlook

Sub AddOutlookCalendar(pEntry As OutlookEntry, pSubject As String, pBody As String, pDate As Variant)
Dim oOutlook As Object
Dim oApp As Object
'Dim a As AppointmentItem


    ' Create the Outlook session
    Set oOutlook = CreateObject("Outlook.Application")
    ' Create the AppointmentItem
    Set oApp = oOutlook.CreateItem(1)
    ' Set the appointment properties
    oApp.Location = ""
    oApp.Start = Format(pDate, "mm/dd/yyyy") & " 10:00"
    oApp.End = Format(pDate, "mm/dd/yyyy") & " 10:15"
    oApp.Duration = 1
    oApp.BusyStatus = 0
    oApp.ReminderSet = True
    oApp.ReminderMinutesBeforeStart = 1
    oApp.Subject = psbject
    oApp.Body = pBody

    oApp.Save

    Set oApp = Nothing
    Set oOutlook = Nothing
End Sub

Tienes que entrar al editor de VBA presionando Alt+F11, una vez ahí, insertas un módulo de VB... Para poder usarla necesitarías saber algo de programación en VBA o VB para crear un ciclo que recorra toda tu lista de contactos y por cada uno ejecute el procedimiento que te envié... Es muy sencillo, pero si no tienes experiencia en programación va a estar complicado

publicado
  • Autor

Entonces va a estar complicado je je je pero muchas gracias

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.