Userform
Userform
Userform
MACROS EN EXCEL
1
Prof. Angel Terrones Ayala
Microsoft Excel Avanzado
4. Escribimos el nombre
de la macro
2
Prof. Angel Terrones Ayala
Microsoft Excel Avanzado
3
Prof. Angel Terrones Ayala
Microsoft Excel Avanzado
4
Prof. Angel Terrones Ayala
Microsoft Excel Avanzado
UserForm
Un formulario es una ventana que se programa por medio de controles y estos
controles responde a procesos que nosotros programamos.
5
Prof. Angel Terrones Ayala
Microsoft Excel Avanzado
6
Prof. Angel Terrones Ayala
Microsoft Excel Avanzado
7
Prof. Angel Terrones Ayala
Microsoft Excel Avanzado
IF ELSE
If txtarabigo.Text = "1" Then
txtromano.Text = "I"
Else
If txtarabigo.Text = "2" Then
txtromano.Text = "II"
Else
If txtarabigo.Text = "3" Then
txtromano.Text = "III"
Else
If txtarabigo.Text = "4" Then
txtromano.Text = "IV"
Else
If txtarabigo.Text = "5" Then
txtromano.Text = "v"
Else
txtromano.Text = "no existe"
End If
End If
End If
End If
End If