Formulario: Botón cargar datos
Publicado por Carlos (3 intervenciones) el 09/01/2019 17:51:19
Hola, comunidad, en un xls he creado un formulario con su muchos TextBox por cada datos que quiero ingresar. El formulario funciona bien carga los datos, pero lo que no logró entender es como hago para que cada dato nuevo que ingrese lo ponga en la linea de abajo y no me lo sobreescriba.
A continuación copio el desarrollo que tengo, por favor me pueden guiar a como hago el próximo paso
Programación:
A continuación copio el desarrollo que tengo, por favor me pueden guiar a como hago el próximo paso
Programación:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
Private Sub TextBox1_Change()
ActiveSheet.Range("A10000").Value = TextBox1
End Sub
Private Sub TextBox10_Change()
ActiveSheet.Range("K10000").Value = TextBox10
End Sub
Private Sub TextBox11_Change()
ActiveSheet.Range("l10000").Value = TextBox11
End Sub
Private Sub TextBox13_Change()
ActiveSheet.Range("M10000").Value = TextBox13
End Sub
Private Sub TextBox14_Change()
ActiveSheet.Range("N10000").Value = TextBox14
End Sub
Private Sub TextBox15_Change()
ActiveSheet.Range("O10000").Value = TextBox15
End Sub
Private Sub TextBox16_Change()
ActiveSheet.Range("P10000").Value = TextBox16
End Sub
Private Sub TextBox17_Change()
ActiveSheet.Range("Q10000").Value = TextBox17
End Sub
Private Sub TextBox18_Change()
ActiveSheet.Range("S10000").Value = TextBox18
End Sub
Private Sub TextBox19_Change()
ActiveSheet.Range("T10000").Value = TextBox19
End Sub
Private Sub TextBox2_Change()
ActiveSheet.Range("B10000").Value = TextBox2
End Sub
Private Sub TextBox20_Change()
ActiveSheet.Range("U10000").Value = TextBox20
End Sub
Private Sub TextBox3_Change()
ActiveSheet.Range("c10000").Value = TextBox3
End Sub
Private Sub TextBox4_Change()
ActiveSheet.Range("d10000").Value = TextBox4
End Sub
Private Sub TextBox5_Change()
ActiveSheet.Range("e10000").Value = TextBox5
End Sub
Private Sub TextBox6_Change()
ActiveSheet.Range("f10000").Value = TextBox6
End Sub
Private Sub TextBox7_Change()
ActiveSheet.Range("g10000").Value = TextBox7
End Sub
Private Sub TextBox8_Change()
ActiveSheet.Range("h10000").Value = TextBox8
End Sub
Private Sub TextBox9_Change()
ActiveSheet.Range("j10000").Value = TextBox9
End Sub
Valora esta pregunta
0