Error Desbordamiento en la ejecución de un Userform dentro de Excel
Estoy trabajando en un proyecto en Excel 2007 y al probar el código del UserForm me aparece un error de Desbordamiento en la ejecución del UserForm
El código que estoy ejecutando es:
Private Sub cbm_CODE_Change() If CARGANDO Then Exit Sub CARGANDO = True cbm_DESCRIPTION = "" If cbm_CODE.ListIndex > -1 Then cbm_DESCRIPTION = cbm_DESCRIPTION.List(cbm_CODE.ListIndex) End If CARGANDO = False Dim busco Dim dato As Long, I As Long If cbm_CODE = "" Then Exit Sub dato = cbm_CODE.Value Set hojaB = Sheets("APP_DATA") For I = 5 To hojaB.Range("J" & Rows.Count).End(xlUp).Row If hojaB.Range("J" & I) = dato Then txt_CU.Text = hojaB.Range("L" & I) Exit For End If Next I End Sub
La Base de Datos correspondiente se encuentra a partir de la columna I3 de la Hoja APP_DATA
1 Respuesta
Respuesta de Manuel Escalona
1