How can I save a text-dilineated file (txt) from numbers?

Trying to save this file format for an amazon upload. i know it works from excel, but only have numbers know. anyone know? Thanks

Hi Ryan,
Copy each table in turn and paste into TextEdit. It will become tab-delimited. Save as plain text.
Regards,
Ian.

Similar Messages

  • Can't save my Text Edit files!

    Hope I'm in the right forum.  This started yesterday and I don't know why or how to fix it.
    I can't save my Text Edit Files (rtf).  I got 1 error message that can't save file until problem is fixed but I have no idea what the problem is.
    Running Text Edit 1.7.1 (289.5).  iMac OS 10.7.5
    Can Someone help?
    Thanks
    Allen

    Hi,
    I've been having a similar problem with nonsensical error messages from text edit when I try to save. Repairing permissions doesn't seem to have helped, but I have found that checking the 'hide extension' box in the save window seems to get around it.
    cheers all

  • How can I sav an emailed .mov file to my iPad?

    How can I sav an emailed .mov file to my iPad?

    Yes there is, if you hold down the attachment widget in the email once the video is downloaded, it will give you a series of options to save it to, including camera roll. 
    Hope this solves your question. 
    Cheers,
    Allen

  • How can I save a Motion 5 file as a video?

    How can I save a Motion 5 file as a video? I want to use it in an iMovie Project.

    Everything about using Motion, including exporting a video (and much more), is available either in the application or online:
    Help Menu> Motion 5 Help: see the Share Motion Projects chapter.
    The manual can also be found online here: http://www.apple.com/support/motion/
    Finally there is also this link to the manual: http://help.apple.com/motion/mac/5.1/

  • Email attachments: whenever someone sends me a file the Ipad labels it winmail.dat and wont allow me to open it...these are Word, Exce or jpgs.  Does anyone know why this is and how to fix it?  Also, how can you save attachments to a file on the IPad2

    whenever someone sends me a file the Ipad labels it winmail.dat and wont allow me to open it...these are Word, Exce or jpgs.  Does anyone know why this is and how to fix it?  Also, how can you save attachments to a file on the IPad2

    Is this a particular sender, or all of your attchments?  Google winmail.dat and you will see a number of returns that can explain this, but in short, this is the way some e mail providers deal with attachments.  If all of your e mail is coming that way, you need to change a setting on your isp set up.  Perhaps stary here...
    http://www.nytimes.com/2010/11/25/technology/personaltech/25askk.html

  • HT4623 How can I save the update download file as I have several devises to upgrade and cant afford the bandwidth to do each via iTunes

    How can I save the update download file as I have several devises to upgrade and cant afford the bandwidth to do each via iTunes.
    There does not appeare to be any doenloadable files in the download section.

    "Well that's totally unacceptable."
    Actually you can only accept it, as it is the way it is.  You may not like it, but it is so.  Sorry.
    " your seriously telling me that Apple expect me to download the same huge file 8 TIMES"
    That is exactly what I am telling you.
    " No way."
    Still true.
    "Apple are going to have to come up with another solution."
    No.  They do not have to do any such thing.  They may choose to do so in the future, but there is no reason to believe that they will.

  • How can I save a rotated pdf file?

    I have received a pdf file of many pages in landscape orientation that need to be saved in portrait orientation.  I know how to rotate the file, but how can I save the rotated document?
    [This is my first entry, so apologies if I have got my entries mixed up]
    Laurie

    Hello Laurie,
    Unfortunately this does not work with Adobe Reader, but with Adobe Acrobat or similar programs (Google could be your friend ) BUT you could try Acrobat free for 30 days, if you'd like. See www.adobe.com/products/acrobat.html for more information.
    Hans-Günter

  • How can I save an edited converted file?

    How can I save an edited converted (from PDF) file?

    Hi alisonr1825446,
    When you convert a PDF file to Word/Excel, it's automatically saved to your Acrobat.com online account. From there, you can download it to your desktop to edit it, and then save it. To download your file, log in to https://cloud.acrobat.com/files. Select the file, and then click the Download link at the top of the file list. Your file will be downloaded to the Downloads folder on your computer.
    Please let us know how it goes.
    Best,
    Sara

  • How can I save a text file to disk from Illustrator ?

    Hi,
    I was looking through the Javascript reference and couldn't find anything related to writing strings to a text file on disk.
    Is this possible ? If so where should I look ?
    Otherwise, can I run a bit of code in Terminal/CommandPrompt from Illustrator (.e.g. echo 'Hello!' >> file.txt) ?

    Here's something that I think Muppet Mark or Carlos Canto posted earlier
    #target illustrator
    var textFile = File('~/Desktop/AI.txt');
    var doc = app.activeDocument;
    var docText = '';
    for (var i = 0; i < doc.textFrames.length; i++)
              docText += doc.textFrames[i].contents + '\r';
    textFile.open('e');
    textFile.write(docText);
    textFile.close();

  • How can I save long text in a Ztable

    Hi ,
    I have a ztable in which some of the fields are text fields.
    For ex;
    field1  char 10
    field2  text
    field3  char 10
    field4 text
    field5 text.
    How can I create a ztable for long texts.

    Hi!
    I don't think you are able to save SAPScript-like texts into a Z-table.
    These long texts are stored centrally in the STXH, STXL tables.
    You may save their names in your Z-table, and store-read them using the function elements READ_TEXT, SAVE_TEXT.
    Or you might try to enter STRING type fields into your Z-table.
    Field1 TYPE STRING.
    Regards
    Tamá

  • How can I save references to a file?

    Hi,
    I just ran into a really tricky problem where I'm trying to write objects to a file. The problem is like :
    class A
    B b1;
    B b2;
    The two B objects may be references to the same object, they don't have to be. How can I write this structure to a file? I want to be able to recreate it exactly, with references to objects kept intact. If the two B objects were referencing the same object I still want them to reference the same object after reading in from a file.
    Naturally, the above example is an oversimplified one. My problem is actually much more complex involving superclasses, subclasses, bla bla bla, but this is the fundamental thing I can't do.
    If anyone has any ideas whatsoever please share them. I'm really desperate, filehandling is key to my project and my teacher couldn't help me.
    Thank you to anyone that replies.

    Is there a way to do it without Serializable?
    Strictly speaking I'm allowed to use Serializable,
    I'm supposed to write out the ints and floats myself,
    but if all else fails maybe I can plead to the
    teacher. =)Then basically the teacher wants you to replicate what serialization already does.
    Presumably what you are writing is very simple.
    Say you have the following...
               class Data
                     int i;
                     String s;
               class Holder
                     Data d1;
                     Data d2;
    The first task is write out a Data. So you figure out how to write an int and how to write a String. This could look something like this in the file(all text, each item on a different line)
              int:i: 47
              string:s: test
      Next you need to identify a reference. Notice that a reference is a type, just as int and String is.
    A reference is a pointer. And you need some way to point.
    So one way is to add another element to each class which is a unique id. Thus when you write a Data out it would look like the following...
              id::  1
              int:i: 47
              string:s: test
      And then when you write out Holder it would look like this...
              id:: 3
              ref:d1:  1
              ref:d2:  2
      So your entire file for the code sample given would look like this...
              id::  1
              int:i: 47
              string:s: test
              id::  2
              int:i: 53
              string:s: test other
              id:: 3
              ref:d1:  1
              ref:d2:  2
       Keep in mind that you must write the referenced objects first. Thus Holder must always come after Data.

  • How can I save my text messages on computer

    I am new to Apple products. How do I save all my important text messages somewhere else other than iCloud? I would like to set up a file on my PC.

    search google for an app to install on your computer that will download them.

  • How can I save or export the file containing stored usernames and passwords?

    I'm about to update my desktop computer's operating system, which will mean my hard drive will be wiped. I want to save any file Firefox might have that contains usernames and passwords so I don't have to rebuild that file once Firefox is reinstalled. I've found such files for extensions and bookmarks but not for passwords.

    In article: http://kb.mozillazine.org/Password_Manager#Backing_up_and_restoring_passwords
    *'''Backing up and restoring passwords '''
    **Firefox '''''3.5 and later versions''''', including current beta and nightly builds, use '''''signons.sqlite'''''.
    *'''Troubleshooting'''
    **Firefox '''''3.5 and later versions''''' use the file '''''signons.sqlite''''' to store the encrypted names and passwords. passwords.
    **You can rename '''''signons.sqlite''''' to signons.sqlite.sav to make Firefox '''''3.5+''''' versions use the file signons#.txt from a previous Firefox 3 or 2 version.
    ***'''''3.5+''''' = same as '''''3.5 and later versions'''''
    Also:
    *http://kb.mozillazine.org/Profile_folder_-_Firefox#Files_and_folders_in_the_profile
    *https://support.mozilla.com/en-US/kb/Backing+up+your+information
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    *http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile
    *

  • How can i save my work pdf files and personal pdf files separately in my ipadmini

    Hi,
    I would like some help on separating my personal and work pdf files in my ipad. Currently i saved everything in ibook but find it unprofessional when i have to show my clients my work
    Is there any other way to save my work pdf files separately?
    trena.c

    If you still would like to use Ibooks you can add Collections. i.e.. work pdf's
    View your collections, add a new one.
    Now go to the pdf's you want to add to that collection and move them to the new collection you have just created.
    Hope this helps.
    PJRS

  • How can I save a CYMK PSD file as a PDF in CS5?

    I am able to make the file in CS4 on another computer I use (PC).  However when I try to save a CYMK PSD file as a PDF in Photoshop CS5 I don't see the option in the drop down menu?  Any ideas?  Here are some of the file details
    CMYK
    PSD
    8 bits/channel
    Thanks
    Evren

    For some reason when I started my computer this morning and went to take a screen grab of my intent the option was there.  Could it be because I had to install Adobe Acrobat Pro?  I guess that would more than likely be a obvious thing-?
    For some reason when I was given Adobe Master Suite at work Acrobat didn't come with.
    Thanks for your assistance.

Maybe you are looking for

  • How PR Services was duplicated in the CJ20N?

    Hi, In Report S_ALR_8701358 for one WBS; Goto report "Line Items" we have two identical PR: 1) 15211035 Battery Servicio reparacion walls 588.225,00 USD 15,211,035 10 PREQ GLUDYACA 09/11/2014 2) 15211035 Battery Servicio reparacion walls 588.225,00 U

  • Process Flow and Workflow

    Hi experts, does a process flow cannot be used if we dont have oracle workflow? If yes, any of you know the alternative ways to run a schedule mapping sequentially? Currently i am running schedule from OWB (Control center manager). And i am not satis

  • Upgrade CUCM 6.1.2.1121-1 to CUCM 6.1.3.1000

    I  want to migrate to version 7.1.3 to CUCM, I'm in 6.1.2.1121-1 version, release  special, but I noticed that to go to 7.1.3 must first be version 6.1.3, was  wondering if being in a particular release can have any problem in  upgrading to 6.1.3. Th

  • Change highlight color in pages

    Hey guys and gals, Would anyone happen to know whether changing highlight color in Pages is possible, and if so - how? I searched all over and found no satifsying answers. Thank in advance! Eran

  • CompileXIB /usr/bin/ibtool failed with exit code 255

    Hi We have several build machines located at different sites. Recently all the machines, on one site, started to fail with this error /usr/bin/ibtool failed with exit code 255 during a CompileXIB of a updated file. By reverting the change line by lin