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.

Maku

Exceler E
  • Unido

  • Última visita

Respuestas de la comunidad

  1. Maku's post in Libro de excel lento was marked as the answer   
    Ahora sí, aquí lo dejo por si a alguien le viene bien.
    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim celda As Range
        Dim imgNombre As String
        Dim imgOriginal As Shape
        Dim imgCopia As Shape
        Dim nombreImagenCelda As String
     
        ' Solo actuar si el cambio es en una celda individual
        If Target.CountLarge > 1 Then Exit Sub
     
        Set celda = Target
        nombreImagenCelda = "Imagen_" & celda.Address(False, False)
     
        ' Eliminar imagen existente en esa celda (si existe con ese nombre)
        On Error Resume Next
        Me.Shapes(nombreImagenCelda).Delete
        On Error GoTo 0
     
        ' Determinar qué imagen usar según el valor
        Select Case celda.Value
            Case 1: imgNombre = "PruebaEuropa"
            Case 2: imgNombre = "PruebaAsia"
            Case 3: imgNombre = "PruebaÁfrica"
            Case 4: imgNombre = "PruebaAmérica"
            Case 5: imgNombre = "PruebaOceanía"
            Case 6: imgNombre = "PruebaMarrón"
            Case Else: Exit Sub ' No hacer nada si el valor no es válido
        End Select
     
        ' Buscar la imagen original
        On Error Resume Next
        Set imgOriginal = Me.Shapes(imgNombre)
        On Error GoTo 0
     
        If imgOriginal Is Nothing Then
            MsgBox "No se encontró la imagen '" & imgNombre & "'.", vbExclamation
            Exit Sub
        End If
     
        ' Copiar la imagen y colocarla sobre la celda
        imgOriginal.Copy
        Me.Paste
        Set imgCopia = Me.Shapes(Me.Shapes.Count)
     
        With imgCopia
            .Top = celda.Top
            .Left = celda.Left
            .Height = celda.Height
            .Width = celda.Width
            .LockAspectRatio = msoFalse
            .Name = nombreImagenCelda
        End With
    End Sub

  2. Maku's post in Ocultar celdas en año no bisiesto was marked as the answer   
    Solucionado!

    Libro2.xlsm

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.