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.
If there is a chance that a cell will contain more than 1,024 characters,
use the
Value property to read the text from the cell. The
Value property can read up to 32,767 characters from a cell.
For example, if you want to read the text from cell A1, when cell A1
contains more than 1,024 characters, follow these steps:
- On the Tools menu, point to Macros, and click Visual Basic Editor.
- On the Insert menu, click Module.
- Type the following macro code in a module sheet:
Sub Read_Text()
MyVar = Range("A1").Value
MsgBox MyVar
End Sub
- On the File menu, click Close and Return to Microsoft Excel.
- On the Tools menu, point to Macro, and click Macros.
- Click the Read_Text macro and then click Run.
A message box with the text from cell A1 will be displayed.