Agregar código a formulario

dragonfire33

Board Regular
Joined
Oct 7, 2021
Messages
91
Office Version
  1. 365
Platform
  1. Windows
Hola buenos días como puedo ejecutar el siguiente código en un formulario de 4 celdas y agregarle la condición de que al ingresar dos dígitos de un número de 4 cifras en cualquier posición se completé automáticamente
VBA Code:
Sub filtrar()
  Dim nRow%, n1%, n2%, n3%, n4%, r
  Application.ScreenUpdating = False
 
  n1 = Range("BB1").Value
  n2 = Range("BC1").Value
  n3 = Range("BD1").Value
  n4 = Range("BE1").Value
   
  nRow = (n1 * 2 * 10 + 2) + (n2 * 2)
  Range("A" & nRow).Resize(2, 8).Copy Range("BB5")
 
  nRow = (n2 * 2 * 10 + 2) + (n3 * 2)
  Range("I" & nRow).Resize(2, 8).Copy Range("BB7")
 
  nRow = (n3 * 2 * 10 + 2) + (n4 * 2)
  Range("Q" & nRow).Resize(2, 8).Copy Range("BB9")
 
  nRow = (n1 * 2 * 10 + 2) + (n4 * 2)
  Range("Y" & nRow).Resize(2, 8).Copy Range("BB11")
 
  nRow = (n1 * 2 * 10 + 2) + (n3 * 2)
  Range("AG" & nRow).Resize(2, 8).Copy Range("BB13")
 
  nRow = (n2 * 2 * 10 + 2) + (n4 * 2)
  Range("AO" & nRow).Resize(2, 8).Copy Range("BB15")
 
  For Each r In Array("BB5", "BB7", "BB9", "BB11", "BB13", "BB15")
    Range(r).Resize(2, 8).Borders(xlEdgeLeft).LineStyle = xlContinuous
    Range(r).Resize(2, 8).Borders(xlEdgeTop).LineStyle = xlContinuous
    Range(r).Resize(2, 8).Borders(xlEdgeBottom).LineStyle = xlContinuous
    Range(r).Resize(2, 8).Borders(xlEdgeRight).LineStyle = xlContinuous
  Next
 
  Application.ScreenUpdating = True
End Sub
 

Attachments

  • Screenshot_20240809-111942.png
    Screenshot_20240809-111942.png
    190.5 KB · Views: 19

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.

Forum statistics

Threads
1,225,738
Messages
6,186,734
Members
453,369
Latest member
juliewar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top