Numbers suitable for xls files?

Is it possible to import Excel files in Numbers and subsequently work on them?
If not, which app should I use?

Numbers can import Excel spreadsheets, though Numbers for iPad cannot handle all the formulas and formatting Excel can. There is an FAQ page here that you should look over before deciding:
http://support.apple.com/kb/HT4067
There are other apps that can import and edit Excel spreadsheets. Documents To Go from Dataviz is one that is commonly recommended, and you may find others if you search the iPad forums for "Excel".
Regards.

Similar Messages

  • I want to open excel spread sheets make additions and export back to pc users.  Is numbers suitable for this activity?

    I want to open excel spread sheets make additions and export back to pc users.  Is numbers suitable for this activity?  I am using a MACBook Air

    just read this in an other answer:
    Pages can open docx files, Numbers can open xlsx files. Each can export to  can export .doc or .xls to the newest Word or Excel format.respectvely, but not to the more recent .docx or .xlsx.
    Translation is not perfect in either direction. Numbers and Excel handle some similar features (eg. pop-up menus vs data validation) differently, and the translator cannot translate from one implementation to the other.
    If much of your work is going to be transferred between your machine and Windows machines running either MS Excel or MS Word, with editing taking place at both ends of the tunnel, then you'll probably be better off with Office, or one of the Office clones on the Mac end.

  • Numbers not opening .xls files (same with pages...)

    hi,
    just got my new imac and i've been searching for information as to why i can't open .xls or .doc files in iwork. everything is up to date. it worked on my old mac. any suggestions? i tried renaming the extensions to .numbers or .pages and still won't open.
    thanks,
    susan

    If you are trying to open them by double-clicking on the document, then select one of the documents. Press COMMAND-I to open the Get Info window. In the Open With panel select Pages from the dropdown menu then click on the Change All button. Repeat for .xls files except choose Numbers.
    Or open the files from within Numbers or Pages using the File menu in the program. Then save the file as a Numbers or Pages document using Save As (hold down the OPTION key and select Save As in the File menu.

  • "Cannot interpret data in file" error while using GUI_UPLOAD for .xls file

    Hi,
         I have made a program using FM GUI_UPLOAD to upload an .xls file to an internal table. But upon executing ,it gives error "Cannot Interpret data in file". I have seen in other posts people talking about GUI_UPLOAD FM to upload data from excel directly into internal table. Kindly help.
    Here is my code. I had tried using different combination for HAS_FIELD_SEPARATOR but still its not working.
    In my emp1.xls file , the data in each column is present in the same order as in the internal table. Although the first column in my internal table is NUMC. I dont know if that is causing the problem.
    REPORT  ZUPLOAD_1.
    data: itab TYPE TABLE OF zempl_master WITH HEADER LINE.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\empl1.xls'
        FILETYPE                      = 'ASC'
        HAS_FIELD_SEPARATOR           = 'X'
    *   HEADER_LENGTH                 = 0
    *   READ_BY_LINE                  = 'X'
    *   DAT_MODE                      = ' '
    *   CODEPAGE                      = ' '
    *   IGNORE_CERR                   = ABAP_TRUE
    *   REPLACEMENT                   = '#'
    *   CHECK_BOM                     = ' '
    *   VIRUS_SCAN_PROFILE            =
    *   NO_AUTH_CHECK                 = ' '
    * IMPORTING
    *   FILELENGTH                    =
    *   HEADER                        =
      TABLES
        DATA_TAB                      = itab.
    * EXCEPTIONS
    *   FILE_OPEN_ERROR               = 1
    *   FILE_READ_ERROR               = 2
    *   NO_BATCH                      = 3
    *   GUI_REFUSE_FILETRANSFER       = 4
    *   INVALID_TYPE                  = 5
    *   NO_AUTHORITY                  = 6
    *   UNKNOWN_ERROR                 = 7
    *   BAD_DATA_FORMAT               = 8
    *   HEADER_NOT_ALLOWED            = 9
    *   SEPARATOR_NOT_ALLOWED         = 10
    *   HEADER_TOO_LONG               = 11
    *   UNKNOWN_DP_ERROR              = 12
    *   ACCESS_DENIED                 = 13
    *   DP_OUT_OF_MEMORY              = 14
    *   DISK_FULL                     = 15
    *   DP_TIMEOUT                    = 16
    *   OTHERS                        = 17
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP at itab.
      write:/ itab-emp_no,itab-name.
    endloop.

    hi amber22 you need to use the below fm to upload an xls file
    FORM EXCEL_UPLOAD .
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          FILENAME    = FILENAM
          I_BEGIN_COL = 1
          I_BEGIN_ROW = 1
          I_END_COL   = 6
          I_END_ROW   = 100
        TABLES
          INTERN      = xl_itab.
    * EXCEPTIONS
    * INCONSISTENT_PARAMETERS = 1
    * UPLOAD_OLE = 2
    * OTHERS = 3 .
      IF SY-SUBRC = 0.
    MESSAGE 'DATA UPLOADED SUCCESSFULLY' TYPE 'I'.
      ENDIF.
    ENDFORM.                    " EXCEL_UPLOAD

  • Delimiter for  .xls file in lsmw

    Hi, I am developing an lsmw..and the flat file is in the form of .xls file..so when sepcifying hte file it asks for the delimiter.what should  i give for delimiter if my flat file is a .xls file?
    i would reward points for the helpful answers.

    If you see your XLS file in notepad/wordpad, you can see there is nothing like u have written in ur XLS sheet. U will see file with special characters.
    So I think that's the reason you can not use FM : GUI_UPLOAD for uploading file from PC to SAP.
    You have to use FM : TEXT_CONVERT_XLS_TO_SAP.
    In LSMW, this FM is not used.
    So you have to save contents of ur XLS sheet to a text file then you 'll be able to do ur normal operation.
    Regards
    Prax

  • Invalid Mimetype Detection for .xls file with CF10

    After upgrading to CF10, we are having issues getting our server to properly recognize any mimetype associated with the .xls file extension.  For some odd reason, the server is viewing them as a word file type and rejecting it.   
    When we upload a file with the .xls extension, the server responds back with the following error message:
    "The MIME type or the Extension of the uploaded file application/msword was not accepted by the server. Only files of type application/excel,application/vnd.ms-excel,application/x-excel,application/x-msexcel,appl ication/vnd.openxmlformats-officedocument.spreadsheetml.sheet can be uploaded. Verify that you are uploading a file of the appropriate type. The error type is Application."
    Our only workaround for the time being is uploading all files in the newer .xlsx format, which the server properly accepts.  As you will see from the above error message, those are the mimetypes I have thus far.  The other work around is updating the tika jar files which I have included more details in my bug report link below, but that is a solution we are steering off of until we get further confirmation on the solution. 
    I've reported this possible bug to Adobe, but of course it will be weeks or months before a confirmation or response is made on it since there are countless other bugs / feature requests that are still unanswered.  So I'm reaching out to the community in efforts to see if anyone else may have received the same issue or could see what we may be doing wrong. 
    Link to bug report with more details: https://bugbase.adobe.com/index.cfm?event=bug&id=3343364

    If you guys want to replicate this in your local environment, it's very easy using the steps I outlined in my bug report.  Please report back on your results.  I would love to see if other users experience the same or different.
    Steps to Reproduce:
    1. Create cfset tags to specify what type of files and mime types are allowed for user uploads.
    <cfset uploadFileFilter = ".xls,.xlsx" />
    <cfset uploadFileMimeType = "application/excel,application/vnd.ms-excel,application/x-excel,application/x-msexcel,app lication/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
    2. Define where the file will be uploaded to using the cffile attribute. (Change destination to the same directory of where you are creating the current .cfm file below)
    <cffile action = "upload"
    fileField = "fileupload"
    destination = "C:\test\"
    accept = "#uploadFileMimeType#"
    nameConflict = "MakeUnique">
    3. Finally create a simple form that allows the user to upload files.
    <cfform enctype="multipart/form-data">
    <cfinput accept="#uploadFileMimeType#" type="file" name="FileContents">
    <br/>
    <cfinput type="submit" name="submit" value="Upload File">
    </cfform>
    4. Open excel, enter any data, and save it as an .xls file.
    5. Submit it to the form.
    Final code
    <cfset uploadFileFilter = ".xls,.xlsx" />
    <cfset uploadFileMimeType = "application/excel,application/vnd.ms-excel,application/x-excel,application/x-msexcel,app lication/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
    <cfif isDefined("Form.FileContents") >
        <cffile action = "upload" 
            fileField = "FileContents" 
            destination = "C:\EnterLocalPathHere\" 
            accept = "#uploadFileMimeType#" 
            nameConflict = "MakeUnique">
    <cfelse>
        <cfform enctype="multipart/form-data">
            <cfinput accept="#uploadFileMimeType#" type="file" name="FileContents">
            <br/>
            <cfinput type="submit" name="submit" value="Upload File"> 
        </cfform>
    </cfif>

  • File locking - is nio FileLock suitable for locking files inter-machine?

    hi,
    does anyone know if the nio FileLock class would be suitable for locking a directory on a network filesystem for access by different machines ?
    the API seems to suggest it may work with some network filesystems, but doesn't explicitly say this would work between different machines
    if this is the case, then is it advisable to implement a separate scheme for locking directories via "ticket" files left in the directory?
    thanks,
    asjf

    [edsonw]
    You need to find a Unix (or Windows; check your
    environment) guru and check if the usage of the APIs
    (Unix) fcntl (F_RDLCK or F_WRLCK or
    F_SETLK64 or F_SETLKW64) and fcntl (F_UNLCK)
    (Windows) LockFileEx or LockFile
    (LOCKFILE_FAIL_IMMEDIATELY or LOCKFILE_EXCLUSIVE_LOCK)
    that are used by the FileLock class is enough for your needs.i'm a bit thin on the ground in both windows and unix gurus at the moment (or at least ones who want to spend time looking into this :) - but see that this is an area where as the answer isn't a clear Yes, its probably better to find a simpler (and hackier) way of doing this?
    [DrClap]
    Or if you can't find that person or don't trust what
    they tell you, then put together a little test program
    and see what actually happens.<gasp> - this is exactly what I didn't want to do :) - its almost guaranteed that it will put me in a "It Worked On All The Scenarios I Tested" scenario..
    i've implemented a lo-fi locking scheme that works by the presence or absence of a file (thats been touched in a configurable timeout period) it seems to work but seems very um, lo-fi..
    thanks,
    asjf

  • Sending an email attachment for xls file

    Hi all,
    I am executing the reports in background, i am getting spool after executing. Just i need to convert the spool to xls format and email through attachment and mail to the user.The xls file should not be saved on local system.
    I need your help.
    Regards
    Vinay.

    see this link
    to send xls as attachment.
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm

  • Text no longer prints for xls files from preview

    After upgrade to Mavericks xls files no longer print text or save it into pdf files.  The text is visible on the preview screen in print but does not get transfered into the files or to the printer.  I deleted and reloaded the printers in preferences and reset the PRAM.  That did not solve this issue.

    <i>Moderator Comment<br>
    (Duplicate thread closed. Continue at [/questions/1000178]) -m) </i>

  • Encryption Type in Microsoft Excel 2013 (XLS file)

    Hello,
    I am creating a password protected file of format Excel 97-2003 Workbook (.xls) using Microsoft Office 2013.
    I have written a java program to read password protected excel file using POI API. I am able to read .xlsx file using this API, but I am not able to read .xls file. It throw error : org.apache.poi.hssf.record.RecordFormatException: Unknown encryption
    info 4
    Using same java code I am able to read .xls file if I use Microsoft Office 2010 to create this file. 
    As per POI API documentation:
    Apache POI contains support for reading few variants of encrypted office files:
    XLS - RC4 Encryption
    XML-based formats (XLSX, DOCX and etc) - AES and Agile Encryption
    I think in Microsoft Office 2013, encryption type has been change for XLS file. So I want to know that how can I solve this issue. Also please let me know how to configure Encryption Type in Microsoft Excel 2013 Excel file.
    OS is Windows 8(64-bit).
    Thanks
    Vishal

    Hi,
    Please see the article and check if it is helpful:
    https://issues.apache.org/bugzilla/show_bug.cgi?id=35897
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    This is the forum to discuss questions and feedback for Microsoft Excel, the issue is more related to Office/Java develop, I recommend you connect the POI provide to get more help.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Can't open .xls files created by Numbers

    All of a sudden, using Numbers '09 I can no longer open certain .xls files that I created in the first place by saving .numbers files as Excel files (using the "Save copy as Excel Document" checkbox in the Save As... dialog box). Some will open, but the vast majority attempt to open, and then I get an "Import Error - An unknown error occurred." message. Backed up copies of the same files produce the same result. New .numbers files I save as Excel documents can't open either.
    Background: Earlier tonight while saving a .numbers file as an Excel Document, the blue "progress" bar got about halfway and then just hung there. Having not rebooted the computer for a couple of weeks, and lots of apps open, I proceeded to shut down other processes and eventually the blue progress bar finished and an Excel file was saved. However, after rebooting the computer, the above inability to open Excel files started to occur. Something in the "save as" process must have corrupted?
    I quit Numbers, deleted the com.apple.iwork.numbers.plist file from Library/preferences, emptied trash, and restarted Numbers -- but that didn't solve the problem.
    What would you all suggest now at this point? Would reinstalling Numbers solve this? (hmmn, where is that disc?) I'm personally fine with the .numbers format, but my clients are not, hence the need to save as Excel documents. Any help would be appreciated!

    ack, this whole thing is frustrating. I can create new .numbers documents, save them as Excel documents, and those resulting .xls documents will open fine. HOWEVER, if I grab an old .xls document from a time machine backup (over a month ago), I cannot open it. Nor can I open an newly saved .xls document saved from the same original .numbers file.
    It would seem that the only thing I can do now is take those old .numbers files and copy/paste the content into a brand new .numbers file. After saving as, the resulting .xls files open fine (with the usual "import warnings", but I'm used to those )

  • Can't open .xls file in numbers '09

    Please help, I just purchased iwork '09 and installed recently.  I'm using Mac OS X 10.6.8, numbers '09 version 2.0, pages '09 version 4.0.  When I try to open an .xls file the error is given 'Numbers quit unexpectedly while using the SFCompatibility plug-in.'
    I saw a post from 2010 that suggested updating iwork '09 to numbers 2.0.3 and pages 4.0.3 but when I check for software updates it gives none for iwork.  I have not changed the original location or name of the folder/file of where the iwork files were installed automatically. 
    I've also deleted the com.apple.iwork.numbers.plist (& the Pages one) located in HD > Users > (your account) > Library > Preferences that was also suggested from this post from 2010. 
    Thanks!

    The latest version of Numbers is 2.3, but that is for Lion & Mountain Lion. For Snow Leopard you should have Numbers 2.0.4. iWork '09 installed from the retail disk or from the downloaded trial must be updated through Software Update. Those installations will not be recognized as installed by the Mac App Store.
    But, as always, if you're not running the latest versions of the iWork apps installed from a retail box or the downloaded trial & Software Update says your software is up to date, make sure all three of the iWork '09 applications are where the installer initially put them. The updaters are very picky. If the location is not where the updater is programmed to look or if the folder doesn't have the name the updater looks for, it will not work. The applications cannot be renamed or moved. If you installed from the downloaded trial or the retail box, they must be in the iWork '09 folder in Applications. That iWork folder must be named iWork '09. If it doesn't have the '09 Software Update won't find them & the updaters won't work.

  • XLS Files created by SSRS will not open in Numbers on the iPad

    The company I work for creates business intelligence reports which are used in an education environment and are created daily and e-mailed out to staff.  These reports contain fairly simple tables with pupil data.
    One customer uses iPads extensively to maximise the quick response to this (behaviour) data.  There is an issue which seems to be prevalent in newer versions of Numbers where these documents can not be opened.  I note a previous discussion on this matter where the only solution was to save the file in excel and then the sheets would open.  This is not really an option here.
    I presume that there is some data missing in the header of the XLS file or something but if anyone has any information on this, especially if I can adapt the report in any way to include this data, please let me know if you have overcome a similar issue and how you went about it.
    Thanks,
    Pete H

    Hi - thank you for your responses.  I don't have an iPad so testing is all being done on site.
    The report is based on three tabs, each producing a basic table with data in.  I can create the reports in CSV and they work fine although the format is all wrong (no tabs etc etc) - but that would lead me to believe that it is nothing in the actual data which is causing the load error.  It also seems fairly intermittent, so I tested with a few different file sizes to make sure it wasn't this - and again nothing too conclusive there.
    I presume quicklook is the built in function to view a file, I spotted this today but again it won't open in that or then again when asked to open in Numbers.
    Hunting around this forum it seems there is some issue in general with opening some XLS files (especially ones created by SSRS) depending on iOS version, so that is the route I will be looking at tomorrow.  Putting these files through a save loop in excel isn't really an option, so I am going to test with a go between e-mail tomorrow which has in some cases seemed to do the trick - maybe appending something to the original file.  Some other posts have suggested that an XLSX file seems to work a lot better and that is supported in MS SQL 2012 which is on the way for our customers at some point.
    Definitely an awkward one!
    Thanks,
    Pete

  • After upgrading to ios6 my iphone will not open .xls files in emails with the default viewer. Is there a fix for this? The same emailed .xls files still open on my ipad using ios5 while viewing email like they did on my iphone prior to upgrading.

    After upgrading to ios6 my iphone will not open .xls files in emails with the default viewer. Is there a fix for this? The same emailed .xls files still open on my ipad using ios5 while viewing email like they did on my iphone prior to upgrading. I have no special software like numbers or anything else installed on either device. Just using the default viewer provided by apple for viewing email.

    The attachment is an .xls excel 97-2003 spreadsheet. I viewed the file in the email and did not edit it with any software. I can forward the file to anyone that is may want to check it out to see if they can help me. I was wondering if there was some way of forcing another ios6 install on my phone and maybe that would solve it.
    Is there anyone out there that is viewing .xls files in email using ios6 w/o any other software installed like numbers or any other add ons? I am not upgrading my ipad from ios5 to ios6 so I can still continue to view the emails on my ipad. Is there an email viewer .xls plug-in that will be availablle in the next ios6 update?

  • Open xls files in numbers

    When I get an attachment in my email .xls I cannot open it on my email nor with numbers.  .xlsx is to a problem.   How do I resolve this?

    Hi - thank you for your responses.  I don't have an iPad so testing is all being done on site.
    The report is based on three tabs, each producing a basic table with data in.  I can create the reports in CSV and they work fine although the format is all wrong (no tabs etc etc) - but that would lead me to believe that it is nothing in the actual data which is causing the load error.  It also seems fairly intermittent, so I tested with a few different file sizes to make sure it wasn't this - and again nothing too conclusive there.
    I presume quicklook is the built in function to view a file, I spotted this today but again it won't open in that or then again when asked to open in Numbers.
    Hunting around this forum it seems there is some issue in general with opening some XLS files (especially ones created by SSRS) depending on iOS version, so that is the route I will be looking at tomorrow.  Putting these files through a save loop in excel isn't really an option, so I am going to test with a go between e-mail tomorrow which has in some cases seemed to do the trick - maybe appending something to the original file.  Some other posts have suggested that an XLSX file seems to work a lot better and that is supported in MS SQL 2012 which is on the way for our customers at some point.
    Definitely an awkward one!
    Thanks,
    Pete

Maybe you are looking for

  • Trouble saving certain pdfs with Adobe x

    I have just upgraded to Adobe x and am now unable to save certain pdfs (eg journal articles). They are not protected files and I was able to do this with the previous version. Same issue as previously asked and also running Windows 7: "I am unable to

  • Restrict non-domain computers

    Does anyone know if it is possible to restrict access based on domain membership or an AD Group? The purpose is to restrict non-domain computers even if the client has a legitimate domain credential to use for authentication.

  • How to get a dynamic dimension ?

    Hi experts: I want to do a demo about Financial,the requested report need a table just like this: *********************|AMOUT | EXPENSE | RETAINED PROFITS CURRENT YEAR |*********|*************|************************ LAST YEAR *****|********|*******

  • How to change control panel options and shortcuts in CS4

    Hi there, I'm trying to customize the control panel in CS4 and am having trouble with a couple of options: - I've turned on distribute options but it won't display (only the align options will) - Where do I find/change the shortcut for "Highlight the

  • FCP5 won't start

    Listen, I tried doing a search, under diffrent titles, and honestly couldn't find what I was looking for. I don't know what happened. Yesterday it was working fine. This morning when I tried launching FCP5....weel it runs through all the credits and