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.

Copiar celdas de excel en textboxs de vba

publicado

Me gustaría saber si se puede seleccionar un rango vertical ejemplo A1:A10, copiarlo y pegarlo en 10 textbox's de una ventana de VBA que tambien estan en horizontal.

Ejemplo.zip

Featured Replies

publicado

lo mas sencillo es hacer esto

Private Sub UserForm_Activate()
TextBox1.Text = Cells(1, 1).Value
TextBox2.Text = Cells(2, 1).Value
TextBox3.Text = Cells(3, 1).Value
TextBox4.Text = Cells(4, 1).Value
TextBox5.Text = Cells(5, 1).Value
TextBox6.Text = Cells(6, 1).Value
TextBox7.Text = Cells(7, 1).Value
TextBox8.Text = Cells(8, 1).Value
TextBox9.Text = Cells(9, 1).Value
TextBox10.Text = Cells(10, 1).Value
End Sub[/CODE]

sino puedes hacerlo mediante un bucle repetitivo ..

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.