A family of Microsoft word processing software products for creating web, email, and print documents.
For everything about setting tab stops in Word, see http://wordfaqs.ssbarnhill.com/SettingTabs.htm .
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How to use tabs fuction? I need to pass this test with good grade, please people I have 40 min left!!!!!
A family of Microsoft word processing software products for creating web, email, and print documents.
For everything about setting tab stops in Word, see http://wordfaqs.ssbarnhill.com/SettingTabs.htm .
Dear @Krists Zambars,
Good day! Welcome to Microsoft Q&A forum!
Based on your description, I understand that you need guidance on using the tabs function in Microsoft Word so you can complete your test.
Regarding your situation, kindly try the following suggestions to set and use tabs in Microsoft Word:
I hope this helps with your situation!
Kindly let me know when there are updates or if you need further assistance. Any updates you’re able to share would be really helpful. I appreciate your time and look forward to hearing how things are going!
Thank you for your time and patience.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
To use the Tab function in Microsoft VBA, you can position output in a file or in the Immediate window. Here’s how you can use it:
Open "TESTFILE" For Output As #1 ' Open file for output.
Print #1, "Hello"; Tab(20); "World."
Print #1, "Hello"; Tab; "World"
Close #1 ' Close file.
In this example, the first Print statement prints "Hello" and then moves the cursor to column 20 to print "World." The second Print statement moves to the next print zone if the argument is omitted. Debug.Print Tab(10); "10 columns from start."
This will print the text starting at column 10 in the Immediate window.These examples illustrate how to effectively use the Tab function to control the output formatting in your applications.