The information in this article applies to:
SUMMARYThis article contains a sample Microsoft Visual Basic for Applications function that converts an integer number to any base less than 10. MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web: http://www.microsoft.com/support/supportnet/overview/overview.aspFollowing is a sample function called "baseconv" that takes two arguments. The first argument, InputNum, is an integer number to be converted. The second argument, BaseNum, is the number of the base to convert InputNum to. Sample Visual Basic Procedure
The function should be typed in a worksheet cell as follows:
For example, the following call to the baseconv function:
returns the following value in the cell:
1100100 REFERENCESMicrosoft Excel for Windows 95For more information about user-defined functions, click the Index tab in Microsoft Excel Help, type the following textuser-defined functionsand then double-click the selected text to go to the "Writing a Function procedure" topic. Microsoft Excel version 5.0"Visual Basic User's Guide," version 5.0, Chapter 12, "Creating User- Defined Functions"For more information about user-defined functions, click the Search button in Microsoft Excel Help and type: user-defined functionsFor information about how to do this in earlier versions of Microsoft Excel, please see the following article in the Microsoft Knowledge Base: Q69777 Macro to Convert Decimal Number to a Different Base Additional query words: 5.00a 5.00c 8.00 97 98 XL98 XL97 XL7 XL5 custom
Keywords : kbprg kbdta kbdtacode PgmHowto xlformula KbVBA |
Last Reviewed: November 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |