Error Using ATAN2 Function in Macro

Written by Allen Wyatt (last updated October 8, 2022)
This tip applies to Excel 97, 2000, 2002, and 2003


1

Lars ran into a problem using the ATAN2 function in a macro. He developed a rather complicated set of instructions, only to have VBA generate an error when it tried to use the ATAN2 function. He was able to simplify the macro so he could recreate the problem:

Sub Test()
    Dim A As Double

    Dim C As Double
    Dim E As Double

    A = 5908
    C = 0
    C = -C
    E = 180 / WorksheetFunction.Pi

    MsgBox E * WorksheetFunction.Atan2(C, A)
End Sub

When the code is executed, the error is generated on the line where ATAN2 is executed. Lars was wondering what, exactly, caused the problem.

The problem is apparently related to how you are manipulating the C variable. You first define C as zero, and then negate this value. There is no such thing as negative zero, and when you try to negate the value, Excel apparently balks when that value is subsequently used in the formula.

One way to solve the problem is simply to change the way in which C is transformed to account for zero values. Change the macro so that it looks like this:

Sub Test()
    Dim A As Double

    Dim C As Double
    Dim E As Double

    A = 5908
    C = 0
    If C <> 0 Then C = -C
    E = 180 / WorksheetFunction.Pi

    MsgBox E * WorksheetFunction.Atan2(C, A)
End Sub

Now the macro will work just fine because you are only doing the transform on C if it doesn't equal zero.

It also appears that the error is only generated if C is defined as a floating-point value. If you dimension C as an Integer, then the original macro does not generate an error. This could indicate that the problem is related to how a floating point representation of the non-existent negative zero is internally represented. Since the Integer data type deals strictly with whole numbers, that representation problem does not occur.

You also can get rid of the problem if you declare C as a Variant data type, or if you remove the declaration line altogether (which means that VBA defaults to declaring C as a Variant when it is first used).

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2892) applies to Microsoft Excel 97, 2000, 2002, and 2003.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Inserting the Saved Date In a Header or Footer

When preparing a worksheet for printing, you may want to include in the header or footer the last date the workbook was ...

Discover More

Changing Paragraph Borders

Word allows you to easily add borders to a paragraph of text. If you want, you can even change each side of the border to ...

Discover More

Controlling Sorting Order

When you sort information either in a table or the body of you document, Word follows a very specific set of rules to do ...

Discover More

Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!

More ExcelTips (menu)

Specifying Location for a Message Box

When writing macros, you may want to position a message box at a specific location on the screen. This can't be done in ...

Discover More

Understanding the For ... Next Structure

Part of the power of VBA is being able to control when some of your code executes and when it doesn't. A primary way to ...

Discover More

Self-Deleting Macros

Macros are very powerful, but you may not want them to always be available to a user. Here are some ways you can limit ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is two more than 3?

2023-03-03 10:36:05

Brian Murphy

VBA run time errors can happen when either argument is some variation of zero, for example -0. Try this: WorksheetFunction.Atan2(C + 0, A + 0)


This Site

Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.