Select the product you need help with
Converting Microsoft Excel Values to Text in an Excel MacroArticle ID: 64681 - View products that this article applies to. This article was previously published under Q64681 On This PageSUMMARY
The following macro command will convert a numeric value in the active cell
to a text string:
3
the entry is converted to the following:
="3"
MORE INFORMATIONMicrosoft 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.
The follow macro example converts either a single cell or a range of cells
from numeric data to text so that you can affect multiple cells at one
time.
A1: Convert_number_to_text A2: =FOR.CELL("CURRENT",,TRUE) A3: =FORMULA("="&CHAR(34)&CURRENT&CHAR(34),CURRENT) A4: =NEXT() A5: =RETURN() Microsoft Excel Version 4.0You can assign this macro to a button in Microsoft Excel version 4.0 by using the following steps:
Microsoft Excel Versions 5.0 and laterNOTE: This macro command also applies to Microsoft Excel versions 5.0 and 7.0, but is not required, because of the ability to format cells as text. To format cells as text in Microsoft Excel version 5.0 and 7.0, do the following:
NOTE: If you format a cell as Text in Microsoft Excel versions 5.0 and 7.0, the underlying cell value will still be treated as a number, if that is what you entered in the cell. The following Visual Basic for Applications macro will convert underlying cell values to Text. PropertiesArticle ID: 64681 - Last Review: November 16, 2006 - Revision: 2.2 APPLIES TO
|



Back to the top








