+ Reply to Thread
Results 1 to 4 of 4

save sheet as "sheetname.txt"

  1. #1
    igorek
    Guest

    save sheet as "sheetname.txt"

    Hello,
    I have a file that contains multiple sheets. I'd like to be able to save
    sheets from 5 to 10 as individual files in the .txt format with the name of
    the sheets.

    thank you
    Igor

  2. #2
    Tom Ogilvy
    Guest

    Re: save sheet as "sheetname.txt"

    for i = 5 to 10
    worksheets(i).copy
    Activeworkbook.SaveAs activesheet.Name & ".xls"
    Activeworkbook.Close SaveChanges:=False
    Next

    --
    Regards,
    Tom Ogilvy

    "igorek" <igorek@discussions.microsoft.com> wrote in message
    news:D94A4DE5-490C-495F-A975-1CCC76C07583@microsoft.com...
    > Hello,
    > I have a file that contains multiple sheets. I'd like to be able to save
    > sheets from 5 to 10 as individual files in the .txt format with the name

    of
    > the sheets.
    >
    > thank you
    > Igor




  3. #3
    igorek
    Guest

    Re: save sheet as "sheetname.txt"

    Tom,

    While your code does save file as .txt, it does not actually ask Excel for
    any specific txt format (text delimited or OS/2 Mac).
    Is there a way to specify it?

    Thank you
    Igor

  4. #4
    Tom Ogilvy
    Guest

    Re: save sheet as "sheetname.txt"

    Sorry, I missed the .txt in your post. (bad eyes).

    for i = 5 to 10
    worksheets(i).copy
    Activeworkbook.SaveAs activesheet.Name & ".txt" FileFormat:=xlText
    Activeworkbook.Close SaveChanges:=False
    Next

    also xlCSV and others - see excel vba help on FileFormat

    --
    Regards,
    Tom Ogilvy


    "igorek" <igorek@discussions.microsoft.com> wrote in message
    news:F5E9047D-0EBB-47A4-B0A8-7195B3EBFE49@microsoft.com...
    > Tom,
    >
    > While your code does save file as .txt, it does not actually ask Excel for
    > any specific txt format (text delimited or OS/2 Mac).
    > Is there a way to specify it?
    >
    > Thank you
    > Igor




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1