Written by Allen Wyatt (last updated February 3, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365
What do you do if you need a string of 80 equal signs or 25 spaces? Use the String() function. This macro function is used to create strings of repeating characters. Consider the following examples:
sFirst = String(25, 32) sSecond = String(25, " ") sThird = String(80, "=") sFourth = String(20, "=*")
The first and second lines are functionally the same; they both produce a string consisting of 25 spaces. In the first example, the ANSI value of 32 is used, which is the character-code value for a space. In the third line, the sThird string will be equal to 80 equal signs.
The fourth line produces a 20-character string of equal signs. This can be a bit frustrating to programmers familiar with other implementations of BASIC, as to them the last example should create a 40-character string of alternating equal signs and asterisks. (Under older versions of BASIC, the String() function concatenates whatever you designate, so one could expect this to create a 40-character string made up of 20 iterations of "=*". Not so in VBA.)
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (12152) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Creating a String.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
When processing a document with a macro, you may need to have the macro repaginate the text. It's easy to do using the ...
Discover MoreDo you need to highlight certain words in a document, and aren't quite sure how to go about it? Using the techniques ...
Discover MoreNeed to find out the day of the year for a particular date? It's easy to do if you are using a macro. All you need to do ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments