You are on page 1of 7

1

APLICACIONES Y FUNCIONES FINANCIERAS


DE EXCEL 2013
EMPLEANDO FRMULAS:
PASOS;
1) Abrir MS-Microsoft Excel 2013
2) Ingresar los datos a la Hoja de Clculo
3) Se mostrar de la siguiente manera:

4) Luego, calcular el Inters empleando la frmula.

CREANDO FUNCIONES (DEFINIDA POR EL USUARIO):


PASOS;
1) Activar el Editor de MS-Microsoft Excel 2013 (<ALT> + F11)
2) Clic en men Insertar
3) Clic en Mdulo

4) Clic en men Insertar.


5) Clic en Procedimiento (Escribir INTSIMPLE).

Clic

4) Clic en Aceptar.

5) Luego, escribir el cdigo en la ventana del Mdulo.

Nota: Este es el cdigo (programacin) de la funcin.


Public Function INTSIMPLE(P As Double, i As Double, n As Double) As Double

Dim Interes As Double


Interes = P * i * n
INTSIMPLE = Format(Interes, "00.00")
End Function

6) Luego, mostrar la Hoja de Clculo.


7) Realizar las acciones del caso.

Clic

EMPLEANDO: PROGRAMACIN EN EXCEL VBA


PASOS:
1) Activar el Editor de MS-Microsoft Excel 2007 (<ALT> + F11)
2) Clic en men Insertar
3) Clic en UserForm
4) Disear el siguiente Formulario:

EDITOR DE VISUAL BASIC


BOTON CALCULAR
Private Sub CommandButton1_Click()
TextBox4.Text = Val(TextBox1.Text) * Val(TextBox2.Text) / 100 * Val(TextBox3.Text)
Cells(4, 6).Value = TextBox1.Text
Cells(5, 6).Value = TextBox2.Text
Cells(6, 6).Value = TextBox3.Text
Cells(7, 6).Value = TextBox4.Text

End Sub
INSERTAR MODULO
Sub LLamar()
UserForm1.Show
End Sub

HOJA DE CALCULO: EXCEL


INSERTAR BOTN PARA MACROS
PASOS:
1)
2)
3)
4)
5)
6)
7)

Clic en ficha Programador


Clic en comando Insertar
Seleccionar el Botn de Formulario
Arrastrar el mouse a la hoja de clculo y formar el botn
Seleccionar el nombre de la macro creada
Clic en Aceptar
Clic en el botn, borrar y escribir nuevo nombre
Ejemplo: Inters Simple

BOTON LIMPIAR
Private Sub CommandButton2_Click()
TextBox1.Text = ""
TextBox2.Text = ""
TextBox3.Text = ""
TextBox4.Text = ""
TextBox1.SetFocus
Cells(4, 6).Value = ""
Cells(5, 6).Value = ""
Cells(6, 6).Value = ""
Cells(7, 6).Value = ""

End Sub
BOTON SALIR
Private Sub CommandButton3_Click()
End
End Sub

8) Se mostrar de la siguiente manera:

You might also like