Visual Basic Macro to Convert Number to a Different Base (135635)



The information in this article applies to:

  • Microsoft Excel for Windows 5.0c
  • Microsoft Excel for Windows NT 5.0
  • Microsoft Excel for the Macintosh 5.0
  • Microsoft Excel for the Macintosh 5.0a
  • Microsoft Excel for Windows 95 7.0a
  • Microsoft Excel 97 for Windows
  • Microsoft Excel for Windows 95
  • Microsoft Excel for Windows 5.0
  • Microsoft Excel 98 Macintosh Edition

This article was previously published under Q135635

SUMMARY

This article contains a sample Microsoft Visual Basic for Applications function that converts an integer number to any base less than 10.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers 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 requirements. Following 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

      Function baseconv(InputNum, BaseNum)

      Dim quotient, remainder As Single
      Dim answer As String
      quotient = InputNum   ' Set quotient to number to convert.
      remainder = InputNum  ' Set remainder to number to convert.
      answer = ""

      Do While quotient <> 0   ' Loop while quotient is not zero.

         ' Store the remainder of the quotient divided by base number in a
         ' variable called remainder.
         remainder = quotient Mod BaseNum

         ' Reset quotient variable to the integer value of the quotient
         ' divided by base number.
         quotient = Int(quotient / BaseNum)

         ' Reset answer to contain remainder and the previous answer.
         answer = remainder & answer

      Loop
      baseconv = Val(answer)   ' Convert answer variable to a number.

   End Function
				
The function should be typed in a worksheet cell as follows:
   =baseconv(InputNum, BaseNum)
				
For example, the following call to the baseconv function:
   =baseconv(100,2)
				
returns the following value in the cell:

1100100

REFERENCES

Microsoft Excel for Windows 95

For more information about user-defined functions, click the Index tab in Microsoft Excel Help, type the following text

user-defined functions

and 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 functions

For information about how to do this in earlier versions of Microsoft Excel, please see the following article in the Microsoft Knowledge Base:

69777 Macro to Convert Decimal Number to a Different Base


Modification Type:MinorLast Reviewed:10/11/2006
Keywords:kbdtacode kbhowto kbProgramming KB135635