Functions
Functions
17/05/2025 02:19 PM 2
Developing Character, Skills and Competenc
e
Creating User-Defined Functions
17/05/2025 02:19 PM 3
Developing Character, Skills and Competenc
e
BMI Calculator
Underweight = <18.5
Normal weight = 18.5-24.9
Overweight = 25-29.9
Obesity = BMI of 30 or greater
17/05/2025 02:19 PM 4
Developing Character, Skills and Competenc
e
EXAMPLE 1
Private Function BMI(Height As Single, weight As
Single) As Double
BMI = weight / Height ^ 2
End Function
17/05/2025 02:19 PM 5
Developing Character, Skills and Competenc
e
EXAMPLE 2
FUTURE VALUE CALCULATOR
FV = PV * (1 + i / 100)n
Where PV represents the present value, FV represents the future
value, i is the interest rate and n is the number of periods
(Normally months or years).
17/05/2025 02:19 PM 6
Developing Character, Skills and Competenc
e
Private Function FV(pv As Single, i As Single, n As
Integer) As Double
FV = pv * (1 + i / 100) ^ n
End Function
For example,