"Step-by-Step learning VBA" export Excel content as a single TXT file

Source: Internet
Author: User
Here I will directly on the source:
Sub Export Txt1 () Dim file as String, arr, I ' defines the name of the text file = Thisworkbook.path & "\ New salary table. txt" ' Determines if there is a text file with the same name, there is an antecedent delete if Dir (file <> "then Kill file" reads the current data into the array arr = Sheet1.range ("A1"). CurrentRegion ' writes all the data in the array to a text file using the Print statement Open file for Output as #1For i = 1 to UBound (arr) Print #1, Join (Application.index (AR R, I), ",") Next closes the text file close #1End Sub


The results of the operation are as follows:



Above is written from Excel txt, my beam crooked an article is read from TXT and then written to Excel: click

Reference article: click

"Step-by-Step learning VBA" export Excel content as a single TXT file

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.