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.

AYUDA CON FORMULA PARA LETRA ABECEDARIO

publicado

Buenas, estoy intentando ver una formula que va contando del 0 al 100 pero cada ves que llegue a 5 me coloque una A es decir seria= A5, despues continue con el A6... hasta que llegue al A9, despues siga con el B10... hasta el B14, después con el C y asi sucesivamente, como lo haria?

Featured Replies

publicado
  • Autor

Tengo un for del 0 al 100 que va cambiando una celda A1=0, A2=1 conforme va corriendo el bucle, pero al llegar al conteo 5 que añada la letra A al inicio, al llegar al conteo 10 que cambie con la B10 y asi, que cada conteo de 5 en cinco añada la siguiente letra del abecedario

publicado

Hola

Tal vez así?

Sub Conteo()
    Application.ScreenUpdating = False
    Dim X As Byte, Y As Byte
    Y = 64
    For X = 0 To 100
        If X > 0 And X Mod 5 = 0 Then
            Y = Y + 1
        End If
        Range("A" & X + 1).Value = IIf(Y > 64, Chr(Y), "") & X
    Next
    Application.ScreenUpdating = True
End Sub

 

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.