Import/convert xls document

I was emailed two xls spreadsheets. One was small and I had no difficulty converting it into a spreadsheet in AppleWorks 6. The large kept crashing AppleWorks. I downloaded the trial version of iWork 09 but kept getting error messages.
iWork numbers said "file format invalid."
iWork Keyote & Pages didn't acknowledge it at all.
What should I have done to make it work?
Meanwhile, I finally downloaded NeoOffice and was successful - and so I gladly paid their suggested $10 contribution.

It's quite possible the Excel files were password-protected. Numbers can't open a password-protected Excel file. Even knowing the password won't help, you're not given the option to enter it. Nor can Pages open a protected Word file nor Keynote a protected PowerPoint file. You best option is NeoOffice as you discovered.

Similar Messages

  • Numbers error on import Excel (.xls) document

    Simple formulas appear to fail on import from Excel simply because the number of rows in the spreadsheet is truncated by content.
    For example: =SUM(E7:E65536) will fail in many cases because there aren't 65536 rows in the table. Shortening this maxiumum fixes the error, but is time consuming because the formulas are only visible by temporary warning notices and must be retyped. I wish these formulas could be kept as errors rather than being moved into warnings.
    I've read the documentation but can't see how to bundle the built-in functions to look for all the rows without specifying a specific range. Does anyone know how to set a wildcard maximum to table rows or columns instead of a number like 65536?

    Numbers isn't designed with the 16th century, monolithic ledger (or infinite grid of cells) in mind. Related sets of data are meant to be grouped in individual tables, with only the number of rows necessary to contain your data (blank cells can work, but should be accounted for in more complicated formulas using the "if" suffixed functions). With formulas acting on that data (with the exception of simple summary functions like you describe) contained in separate tables.
    In this case, your formula would be:
    =SUM(Table 1::E), if the summation formula is in a different table
    or
    =SUM(E), if it is in the same table - like in a footer row. No accounting for row count necessary.
    Where "Table 1" is the name of the table that contains the data ("Table #" being the default) and "E" the name of the column (unless you add a header row then it is the name of the column). This way rows can be added or deleted at will without disrupting any of your formulas and will always include all of the cells in any number of rows in that column. Any numbers in the header and footer rows won't be included in the summation.
    Because Numbers and Excel have fundamentally different views of how the data in spreadsheets should be arranged, straight imports from Excel or attempting to force Numbers to work exactly like Excel won't always make sense.
    Ends up sounding more complicated than it is.

  • Importing a .xls tab delimited file into number

    Hi there... I downloaded a .xls document from the internet and attempted to open it in Numbers. The following import problem presented itself:
    Import Warning - This is a tab delimited document, not a valid Excel document. The data might look different.
    Indeed the data does look different- all of the formatting is visible, and the document is essentially unusable. Is there a way to convert this sort of document into something that can be used in Numbers?
    Thanks

    I opened the document in Text Edit, but was unable to convert tab to commas... here is a clip from the original document when it is opened in both TextEdit and Numbers
    <table border="1">
    <!-- <tr><td colspan = "15" valign="middle" align="center">Date: 2/15/2008</td></tr>-->

  • Converting '.xls' file to '.txt' in BDC Session method

    Hi gurus,
    Happy DIWALIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII------',','
    Please help me in converting '.xls' file to '.txt' in BDC Session method. Is there is any method or function module for this conversion. Please help me with coding.
    Thanks and regards,

    Hi
    File->save as -> Save as type ( text tab delimted.txt) ->Click on yes .
    Now open .txt file -> here data will be tab delimted.
    genrally i use tab delimted file to upload the data.
    Even if you want to programtically then get the data from xls file to Internal table,now use concatenate with comma ,now download it.
    Check the below program :
    Upload xls file and you can see .txt file ( with comma delimted)
    Input ( XLS file )
    aaa 1245 2344 233 qwww
    233 2222 qwww www www
    Output ( .txt file with comma delimted)
    aaa,1245,2344,233,qwww
    233,2222,qwww,www,www
    REPORT ZFII_MISSING_FILE_UPLOAD no standard page heading.
    data : begin of i_text occurs 0,
    text(1024) type c,
    end of i_text.
    Internal table for File data
    data : begin of i_data occurs 0,
    field1(10) type c,
    field2(10) type c,
    field3(10) type c,
    field4(10) type c,
    field5(10) type c,
    end of i_data.
    data : begin of i_download occurs 0,
    text(1024) type c,
    end of i_download.
    data : v_lines type sy-index.
    data : g_repid like sy-repid.
    data v_file type string.
    data: itab like alsmex_tabline occurs 0 with header line.
    data : g_line like sy-index,
    g_line1 like sy-index,
    $v_start_col type i value '1',
    $v_start_row type i value '1',
    $v_end_col type i value '256',
    $v_end_row type i value '65536',
    gd_currentrow type i.
    selection-screen : begin of block blk with frame title text.
    parameters : p_file like rlgrap-filename obligatory.
    selection-screen : end of block blk.
    initialization.
    g_repid = sy-repid.
    at selection-screen on value-request for p_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    PROGRAM_NAME = g_repid
    IMPORTING
    FILE_NAME = p_file.
    start-of-selection.
    Uploading the data into Internal Table
    perform upload_data.
    download the file into comma delimted file.
    perform download_data.
    *& Form upload_data
    text
    --> p1 text
    <-- p2 text
    FORM upload_data.
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
    EXPORTING
    FILENAME = p_file
    I_BEGIN_COL = $v_start_col
    I_BEGIN_ROW = $v_start_row
    I_END_COL = $v_end_col
    I_END_ROW = $v_end_row
    TABLES
    INTERN = itab
    EXCEPTIONS
    INCONSISTENT_PARAMETERS = 1
    UPLOAD_OLE = 2
    OTHERS = 3.
    IF SY-SUBRC <> 0.
    write:/10 'File '.
    ENDIF.
    if sy-subrc eq 0.
    read table itab index 1.
    gd_currentrow = itab-row.
    loop at itab.
    if itab-row ne gd_currentrow.
    append i_data.
    clear i_data.
    gd_currentrow = itab-row.
    endif.
    case itab-col.
    when '0001'.
    first Field
    i_data-field1 = itab-value.
    second field
    when '0002'.
    i_data-field2 = itab-value.
    Third field
    when '0003'.
    i_data-field3 = itab-value.
    fourth field
    when '0004'.
    i_data-field4 = itab-value.
    fifth field
    when '0005'.
    i_data-field5 = itab-value.
    endcase.
    endloop.
    endif.
    append i_data.
    ENDFORM. " upload_data
    *& Form download_data
    text
    --> p1 text
    <-- p2 text
    FORM download_data.
    loop at i_data.
    concatenate i_data-field1 ',' i_data-field2 ',' i_data-field3 ','
    i_data-field4 ',' i_data-field5 into i_download-text.
    append i_download.
    clear : i_download,
    i_data.
    endloop.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE =
    FILENAME =
    'C:\Documents and Settings\smaramreddy\Desktop\fff.txt'
    FILETYPE = 'ASC'
    APPEND = ' '
    WRITE_FIELD_SEPARATOR = ' '
    HEADER = '00'
    TRUNC_TRAILING_BLANKS = ' '
    WRITE_LF = 'X'
    COL_SELECT = ' '
    COL_SELECT_MASK = ' '
    DAT_MODE = ' '
    IMPORTING
    FILELENGTH =
    TABLES
    DATA_TAB = i_download
    EXCEPTIONS
    FILE_WRITE_ERROR = 1
    NO_BATCH = 2
    GUI_REFUSE_FILETRANSFER = 3
    INVALID_TYPE = 4
    NO_AUTHORITY = 5
    UNKNOWN_ERROR = 6
    HEADER_NOT_ALLOWED = 7
    SEPARATOR_NOT_ALLOWED = 8
    FILESIZE_NOT_ALLOWED = 9
    HEADER_TOO_LONG = 10
    DP_ERROR_CREATE = 11
    DP_ERROR_SEND = 12
    DP_ERROR_WRITE = 13
    UNKNOWN_DP_ERROR = 14
    ACCESS_DENIED = 15
    DP_OUT_OF_MEMORY = 16
    DISK_FULL = 17
    DP_TIMEOUT = 18
    FILE_NOT_FOUND = 19
    DATAPROVIDER_EXCEPTION = 20
    CONTROL_FLUSH_ERROR = 21
    OTHERS = 22
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM. " download_data
    Regards
    Pavan

  • How do I import a PDF document to Word?

    How do I import a PDF document to a word document?

    There is no such thing. You will have to convert your PDF to an image or extract the text using Acrobat's export features.
    Mylenium

  • How do I save a xls document in Java

    Hi!
    How do I save a xls Document from java?
    I mean, I want to specify which xls document to save and then save it.
    Any useful code would be of great help!

    This is the code!
    import java.io.*;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.util.Locale;
    import jxl.Workbook;
    import jxl.WorkbookSettings;
    import jxl.write.Label;
    import jxl.write.WritableCell;
    import jxl.write.WritableCellFormat;
    import jxl.write.WritableImage;
    import jxl.write.WritableSheet;
    import jxl.write.WritableWorkbook;
    import jxl.write.Number;
    import jxl.write.*;
    import java.io.IOException;
    import java.io.OutputStream;
      public class writeXls
            public String templateName;
            public String outputName;
          public writeXls (String t, String o)
             templateName = "c://"+t;
             outputName = "c://"+o;
          public void writeYearVolume(String []yearvolymeArray)
              WritableWorkbook workbook = null;
              try
                  // Setup workbook
                  WorkbookSettings ws = new WorkbookSettings();
                  ws.setLocale(Locale.UK);
                  ws.setEncoding("Windows-31J");
                  // Load workbook
                  Workbook template = Workbook.getWorkbook(new FileInputStream(templateName));
                  // Create new workbook
                  workbook = Workbook.createWorkbook(new FileOutputStream(outputName), template, ws);
                  // Create new sheet
                  WritableSheet sheet = workbook.getSheet(1);
                  // Create new label
                  Number amc1000= new Number(4, 1, Integer.parseInt(yearvolymeArray[0]));
                  Number amc800 = new Number(4, 2, Integer.parseInt(yearvolymeArray[1]));
                  sheet.addCell(amc1000);
                  sheet.addCell(amc800);
                  // Write wookbook
                  workbook.write();
                  workbook.close();
                catch (IOException e)
                  e.printStackTrace();
                catch (WriteException e)
                  e.printStackTrace();
                catch(Exception e)
                    e.printStackTrace();
      }The xls file is modified but not saved, how do I save the file?
    Some of the cells in the xls file contains formulas, because of that, the cells containing formulas dosen't update its value.
    if I however save the file manually then the cells are updated. I want to save the xls file automatically from Java.
    Any ideas on how to do that?

  • Importing the word document in RoboHelp

    Hi,
    I am importing a word document into Robohelp 7 HTML. But after the import is completed, the entire word document is converted into a single HTML page. My requirement is that each chapter should be created into seperate HTML file based on the heading level. This will help in creating the book based on the heading level. I was able to do this task successfully with RoboHelp X5 but not with any other higher versions!!!!!

    Hi there
    The key to this is to ensure the Word document has been styled consistently with headings and other formatting. If it's one of the garden variety where folks just painted across text all willy nilly you will indeed see mixed results.
    Pay careful attention to the intermediate dialogs you see when importing the document. The second one should offer a way to split on style.
    Cheers... Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Importing Microsoft word documents that already have paragraph styles

    Hello. I have been trying to figure out how to do this for months, this was taught to me many months ago but for some odd reason when I tried it myself it didn't work . I have my paragraph styles all set up in my indesign document. I have to import text that another person is giving me. The document that this person is giving me is a Microsoft word document. Someone showed me that you can customize the document in microsoft word, with styles for example: Selecting a part of text and customizing it (making it big and bold for example), then naming that style Heading, and then doing the same for lets say...a subheading. Well after you save the document (the microsoft word document), you are able to import the word document into your indesign file and it's supposed to override the styles from Microsoft Word and customize itself with your own paragraph or character styles that you already have in your indesign document, as long as the name of the styles are the same as the ones you had in microsoft word(which in this case would be heading and subheading). Any help would be greatly appreciated.
    Thanks!

    Convert Word styles to InDesign styles
    Here's the info you need. I found it in the InDesign Help section. I needed it, too. The "Show Import Options" is a little box in the lower left hand corner of the screen that comes up when you choose the file you want to place in InDesign. It's easy to miss.
    While importing a Microsoft Word document into InDesign or InCopy, you can map each style used in Word to a corresponding style in InDesign or InCopy. By doing so, you specify which styles format the imported text. A disk icon appears next to each imported Word style until you edit the style in InDesign or InCopy.
    Do one of the following:
    To add the Word document to existing text in InDesign or InCopy, choose File > Place. Select Show Import Options, and then double-click the Word document.
    To open the Word document in a stand-alone InCopy document, start InCopy, choose File > Open, and then double-click the Word file.
    Select Preserve Styles and Formatting From Text and Tables.
    Select Customized Style Import, and then click Style Mapping.
    In the Style Mapping dialog box, select the Word style, and then select an option from the menu under InDesign style. You can choose the following options:
    If there is no style name conflict, choose New Paragraph Style, New Character Style, or choose an existing InDesign style.
    If there is a style name conflict, choose Redefine InDesign Style to format the imported style text with the Word style. Choose an existing InDesign style to format the imported style text with the InDesign style. Choose Auto Rename to rename the Word style.
    Click OK to close the Style Mapping dialog box, and then click OK to import the document.
    Marilyn

  • Import Error The document is encrypted and can't be opened.i am able to open the file on my windows computer at work. there is no password needed.

    I am unable to open an xls file. I get the message: Import Error The document is encrypted and can’t be opened.
    I am able to open the file on my windows computer at work. there is no password needed.

    See note 2 in Troubleshooting issues with iTunes for Windows updates for starters...
    tt2

  • Convert mhtml document to place in organizer

    How do I get a mhtml document into photoshop elements?

    I appreciate the help. I found my solution through trial and error. I right click on document and save as jpeg and then import into pse. I am just learning and appreciate the help
    Date: Mon, 4 Nov 2013 09:41:34 -0800
    From: [email protected]
    To: [email protected]
    Subject: convert mhtml document to place in organizer
        Re: convert mhtml document to place in organizer
        created by MichelBParis in Photoshop Elements - View the full discussion
    I suppose you want to save an mhtml page from your browser ? Which browser ?
    Is your browser able to export as pdf ? Elements could open it.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5813645#5813645
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5813645#5813645
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5813645#5813645. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Photoshop Elements at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Importing a ,docx document (book)

    Hello
    I need to use the demo of Indesign4 to import an 80 page book of poetry created in Word 2003. I need to create a PDF with bleed for a 6in x 9in book.
    I have converted the document to Word 2007 docx, but when I try to place this into Indesign I can paste in the document, but only the first page appears, even if the Indesign document has 80 pages at 6in x 9in.
    Has anyone any idea of what is happening?
    Mike Engles

    Are you pasting or placing (the latter is the correct method)?
    Are you familiar at all with InDesign? When you have more text than will fit into a frame, the remainder becomes "overset" and is inthe document, but not yet on a page. You'll see a red Plus sign in the text frame outport to indicate the overset.
    You can click the overset indicator with the selection tool to load the remaining text into a cursor for threading into a new frame or frames. By holding down the shift key when you click this loaded cursor you will auto-flow all of the remaining text into the document, adding frames or pages as necessary to hold it all. You can also use autoflow when you place the text in the beginning.
    Clicking a loaded text cursor behaves differently depending on what's under it when you click. If there is an empty frame (you'll see the cursor change to have included parentheses, indicating that you will flow into a frame) the text will fill flow into the frame, or if the frame is threaded with others and is not the first frame in the thread, into the first frame.
    If there is no frame, a new frame will be created on the fly, with the top edge at the y-coordinate where you clicked, and the width will fill the column guides surrounding that point and the frame will extend to the bottom margin. If auto-flowing, subsequent frames will start at the top margin and extend to the bottom. If new pages are required, they will be based on master of the last page the text flowed into, which can cause some unexpected results if the master has a frame not threaded to another on the opposite side of a two-page spread.
    Peter

  • Can Fireworks CS5 import a Word document?

    I just watched a Fireworks CS5 tutorial where the author imported a Word document into Fireworks. The import dialog showed "All readable files" and Word documents just showed up in the list view. When he chose a Word document, he got the "place" cursor and when placed, a new text object was created with text from the imported doc.
    I thought that was cool so I wanted to try it myself. When I opened the Import dialog, Word documents don't display in my listview, and the "Files of type" menu doesn't contain "Word" as any of the options. If I choose to show "All files", then choose a Word doc, I get "Could not import the file. Unknown file type."
    I'm wondering if I'm missing a converter? Or maybe the tutorial author was using a third-party extension?
    FWIW, I'm using Fireworks CS5 and Office 2010 32-bit (although I tried some older docs authored in Word 2003 and 2007 and they don't work either).

    Oh, Hi Jim. 
    First of all, you are one of my favorite Lynda.com teachers.  Thanks for working so hard to share this knowledge with us in such a carefully thought out way.
    Secondly, the file is "Tour Spotlight.rtf" from Chapter 03 of Fireworks CS5 Rapid Prototyping Exercise Files.  Or I should say 'was'.. I've just tried it again on my CS5 install on my other laptop and it imported just fine.  I'm not sure why I had an error on the other one...
    So, no worries, thanks for your timely response, that is very appreciated, but the problem was on my end.
    -Christopher

  • Import a word document composed in Arabic font (.ttf) into a .fla

    Hello Everyone;
    I am developing an advance e-book in Flash. My client has composed about 500 books in arabic using Microsoft Word. My client wants search features in this book in which the user will type something in arabic & it will search the ebook text and give him results, so I cannot convert the text into vector or image I have to keep it as text. I want Import a word document composed in Arabic font (.ttf) into a .fla file without losing its formatting. Rightnow I am able to import the font using copy/paste from the word document into Flash, but it changes the font, but I fixed it by changing the text property from "classic text" to "TLF text" which fixed the font. Even though the copy/paste method works without formatting its not practical for my project because there are thousands of pages and copy/pasting them one by one frame by frame is time consuming & not practical.
    I need a method or a third party software through which I can convert the word documents into fla or swf keep the font as text & very important without messing up the font and formatting.

    3rd Party software that can be tested for free:
    print2flash
    wordflashpoint

  • Importing a PSD document into flash?? Help

    Hello,
    I am trying to import my PSD document into flash, I designed my website in photosphop but for some reason flash
    seems to handle everything a little weird. Can Flash handle the different you place on things from photoshop?
    t=Thanks
    B

    Usually it is easier to separate your psd and save each element for web then import to those to Flash and rebuild.
    But it is indeed handy to import your psd directly. If you do so:
    Play with your import settings when importing your psd to Flash. You may want some items to remain vector shapes, you may or may not want to keep text editable, some you may want to import as bitmaps, most you will probably want to convert to movie clips, etc.
    A few bullet points:
    • Flash will turn your layer styles to separate bitmaps and will usually distort them funny.
    • Make sure your psd color profile is sRGB before importing to Flash.
    • Some fonts will not import to Flash from a psd nicely, if you dont need to edit the text you should convert the type to shape (make a copy of the layer first, though, you may have to go back and edit - typos happen)
    • Flash will turn bitmaps as pngs. These may increase file size, so you may still have to go back to PS and export some as jpg (if you do though, once you import those to flash, right click in your library and click Properties and uncheck "Use Imported JPG Quality" and set the percentage yourself).
    The list can go on, but I'm tired and can't think of all the tips and tricks.
    One thing is for sure: Be sure to go over all the importing options in Flash and all the layers carefully before hitting OK.

  • How to view an .xls document using Swing

    Hi folks,
    I'd like to view an .xls document in the same format as in Microsoft Excel. How can i accomplish this using jdk1.5 (swing).
    I've gone through JExcel doc but dont know how to use it. I appreciate if u guys provide an example...
    Thanks in advance....

    Dear Cotton.m,
    4 ur info im not reinventing the wheel...
    My requirement is like this.. In my app i have to give an option to import recipient no's to JList from an .xls file.I've already achieved this in previous version of my appln by a condition that recipient no's should start from A1 to end of that column. But im trying to update it, by allowing the user to view the .xls file and select the no's of his choice(from any row r col)... I hope u understand
    If u can help me then pls..

Maybe you are looking for

  • How to do Apache configuration for two different domains

    Hi , I was just trying out some clustering workshop on weblogic. I faced a issue..here is the scenario : I have two clusters : Cluster1 : 3 managed servers (server1,server2,server3) Cluster2 : 2managed servers (server4,server5) I have two sample appl

  • New Dialog Instance Installation steps for Solaris

    Hi Basis Gurus, I have doubt regarding installation of a Dialog Instance. we are having 3 application servers with one DBCI (ECC 6.0 / Oracle 10.2 / Solaris 10). all application server & DBCI are running in Solaris OS in seperate box, now i want inst

  • CBS HD Broadcast switching between HD/SD

    I'm in Portland OR and last night I noticed that CBS was switching back and forth from HD to SD during the tv broadcast. This was happening with both the local and national programming. All the comercials seemed to be in HD. It was just the shows tha

  • Pendulo invertido

    De antemano gracias por la ayuda que me puedan brindar... La universidad en la que estoy estudiando tiene 2 modulos Qnet (pendulos invertidos) que quiero trabajar sobre  NI Elvis I con el ELVIS 3.0; llevo mas de quinde dias intentando haer que funcio

  • Can anyone pleasem help me

    my hold button is broken. the nearest apple store is an hour and a half away and my parents mmight not go. if i do the advanced repair service for iphone what do i do? it said i get the replacement then send my orignal iphone in. my mom doesnt want t