SQRT is a spreadsheet function. Sqr is the VB equivilant.
I made a couple of other changes.
1) Spreadsheet cells hold data type Double (or String or Boolean). Default conversion routines might allow leaving the argument declarations as type integer, but I never trust them. If you are using the function from VB routines, you will either need to change the argument types back or use CDbl when calling the function.
2) Declaring the Function itself as type Double.
3) VB/Excel will make sure that height and width are type Double (or Integer), the IsNumeric test was not needed.
I would change the variable names "width" and "height", those are properties of many objects and variable names should not conflict with property names.
Bookmarks