Automatically open excel spreadsheets with numbers

can anyone tell me is it possible to set numbers as the default application to ALWAYS open excel spreadsheets? each time i try to open an excel spreadsheet the computer starts up the trial office software. I then have to cancel and choose "open with" and then set "always open with" numbers.
Having just converted from Windows, I was able to set certain programs to always handle specific file formats, e.g. .jpg, mpeg, avi so I did not have to choose the program every single time i wanted to open a file.
thx., same goes for pages ,in lieu of word?

Select an Excel file and option-select (Right Mouse Button) and select Get "Info". See attachment below to set "Open With."
Regards,

Similar Messages

  • Can't open Excel files with Numbers

    Hi,
    I'm having troubles when I try to open Excel files with Numbers. The iWork program simply shuts down and a message appears, telling that a "sudden problem happened".
    Can anyone help here? I really appreciate.
    Rafinha

    Hi Rafinh,
    Welcome to Numbers discussions.
    Numbers will open Excel documents. Sometimes deleting the Numbers Preference file will do the trick. Close Numbers then delete the Numbers preference file: home > Library > Preferences, com.apple.iWork.Numbers.plist
    In the upper right of this window click Search thousands of questions have been asked and answered.
    These Discussions are enduser helping enduser, not Apple employees answering questions. Questions will be answered when a enduser such as yourself finds time, desires to, knows the answer along with the time to respond.
    Again, welcome to Numbers Discussions, have fun here.
    Cordially,
    RicD

  • How to open Excel spreadsheet in Numbers.

    Hey Kids:
    I have trouble opening imported Excel spreadsheets in Numbers on my iMac.  I have Mountain Lion 10.8.2.  Previously I tried a demo of Office Mac that has expired.  When I try to open an Excel spreadsheet I get a message to buy Office Mac.  I've tried to put the demo application in the trash but I still can't open the Excel spreaddsheet and get a message that Excel is in the trash and can't open the spreadsheet. 
    HELP!

    In addition to what Niel said...
    In the Finder, click on an Excel file (.xls) to select it, press command-I to Get Info.
    In the Info window, expand the Open with...section.
    Click the pop-up menu bar in that section and choose Numbers '09.
    Click the Change All button below the menu.
    Repeat with a current version (.xlsx) file.
    Regards,
    Barry
    PS: Unless you have something vital that you're storing in the Trash, you might also want to Empty the Trash to get rid of the Excel trial that's expired.
    B

  • Can't open excel 97 with numbers

    I am unable to open an .xls file with numbers '09 v2.3 (554).  I have not had this problem before although this file is Excel '97 it is one of my earliest files from my PC days.  I recieve the error message "This document was created with an unsupported version of Excel. Only documents created with Excel ’97 or later can be opened."  Don't understand as it is '97.
    I've tried to open other files from the same folder unsucesfully and I can't even open the word .doc files.
    Thanks, any ideas much appreciated.

    I'd suggest downloading one of the open source Office suites, OpenOffice.org, LibreOffice or NeoOffice, then re-saving the result in a more recent Excel format, to be opened in Numbers.
    Or you might stop at that first step, and use that application to work with these files.
    Links are to download sites. All three request donations. Neo requires a recent donation to download the most current version.
    Regards,
    Barry

  • Can I open an excel spreadsheet in NUMBERS complete with formulas?

    Can I open an excel spreadsheet in NUMBERS complete with formulas?

    Problem solved.  I find that the excel file I was trying to convert was an .xlsx version and when I resaved it as an .xls file, I was then able to open it in NUMBERS complete with formulas.

  • C# Script to open and read an Excel spreadsheet with multiple worksheets

    Can someone provide me the C# syntax and Edit Script to open an Excel spreadsheet with multiple worksheets and then using the data to create and output a .csv file? The multiple worksheets contain different data elements that I'll need to parse out and then
    store as a .csv file that will then be read to pump data into our SQL Server Database.
    Thanks for your review and am hopeful for a reply.
    PSULionRP

    I think this code originally came from Joel, who comes here quite a bit.  I'm not a C# expert, like Joe is, but I think this is pretty close to what you want.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using Excel = Microsoft.Office.Interop.Excel;
    using Microsoft.Office.Interop.Excel;
    using System.IO;
    namespace WindowsFormsApplication2
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    Main();
    public void Main()
    string filePath = "C:\\Users\\Ryan\\Desktop\\MainExcel.xlsx";
    Microsoft.Office.Interop.Excel.Application xlobj = new Microsoft.Office.Interop.Excel.Application();
    Workbook w = default(Workbook);
    Workbook w1 = default(Workbook);
    Worksheet s = default(Worksheet);
    Worksheet s1 = default(Worksheet);
    Worksheet xlsht = default(Worksheet);
    xlobj.Visible = true;
    int intItem = 1;
    DirectoryInfo dirSrc = new DirectoryInfo(@"C:\Users\Ryan\Desktop\Test_Folder\");
    foreach (FileInfo ChildFile in dirSrc.GetFiles())
    try
    // Renaming the excel sheet
    w = xlobj.Workbooks._Open(ChildFile.FullName,
    Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
    Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
    Type.Missing, Type.Missing);
    w1 = xlobj.Workbooks._Open(filePath,
    Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
    Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
    Type.Missing, Type.Missing);
    //this doesn't make any sense
    //w1 = xlobj.Workbooks.Open(filePath);
    //if (intItem > 3)
    Excel.Worksheet lastSht =
    (Excel.Worksheet)w1.Worksheets[w1.Worksheets.Count];
    xlsht = (Excel.Worksheet)w1.Worksheets.Add(Type.Missing,
    lastSht,
    Type.Missing, Type.Missing);
    s = (Excel.Worksheet)w.Worksheets[1];
    s1 = (Excel.Worksheet)w1.Worksheets[intItem];
    s1.Name = ChildFile.Name;
    // it will copy and paste sheet from one to another with formula
    s.UsedRange.Copy(Type.Missing);
    Excel.Range r = s1.get_Range("A1", Type.Missing);
    r.PasteSpecial(Excel.XlPasteType.xlPasteValues,
    Excel.XlPasteSpecialOperation.xlPasteSpecialOperationNone,
    Type.Missing, Type.Missing);
    s1.UsedRange.Formula = s.UsedRange.Formula;
    // Renaming the excel sheet
    //w.Save();
    w.Close(false, Type.Missing, Type.Missing);
    w1.Close(false, Type.Missing, Type.Missing);
    catch (Exception ex)
    //w.Save();
    w1.Save();
    w.Close(false, Type.Missing, Type.Missing);
    w1.Close(false, Type.Missing, Type.Missing);
    intItem = intItem + 1;
    //Dts.TaskResult = ScriptResults.Success
    Do you need help getting everything into a CSV, or can you take it from here???
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • EXCEL spreadsheet with MACROS

    WILL NUMBERS 2009 SUPPORT AN EXCEL SPREADSHEET WITH EMBEDDED MACROS?

    Looks like Excel will get macros back. This is from Wikipedia:
    Microsoft has announced that the Mac OS X version will also be released in 2010. Microsoft Office 2011 for Mac will include more robust enterprise support and greater feature parity with the Windows edition. An all-new version of Outlook with full Exchange support will return to the Mac for the first time since 2001 and replace Entourage[47], and Visual Basic for Applications (VBA, aka "macro" support) will return after being dropped in Office 2008[48][49]. There is no public beta for the Mac version,[50] however, a copy of Beta 2 (Build 14.0.0.100326) has been circulated among many Mac file sharing websites. [51]

  • Excel file with numbers on ipad.

    I sent an excel file with numbers to my ipad.  When I open it with Numbers there is no data in the cells.  HELP!!

    How did you send it? Email? iTunes?

  • Can no longer open Excel spreadsheets attachments.

    I have recently upgraded to iOS 5 on my iphone4 and 3GS and can no longer open Excel spreadsheets attachments from my Hotmail. They come up as an E (which I think is Evernote). I don't want to use Evernote, I just want to view them as I could before. Even simple spreadsheets come as this annoying E when I try to open them. Everything worked fine before I did the iOS 5 upgrade and went with the cloud. I've no idea how to this happend or how to solve it.
    Can anyone please help?
    Regards
    Pickers120

    Generally if this happens the thing I have found to do is to quit the application and then restart the application by clicking on one of the files (like the ones in your documnets folder), not by starting the application and using the open command. Doing this immediately will usually solve the problem.
    This could also be an indication of some sort of file or disk corruption so I would recommend that you not only check the disk using Disk Utility from the CD but also checking your disk permissions just to be sure. Instructions for doing so can be found in steps one and two here: http://www.thexlab.com/faqs/repairprocess.html
    If the first two steps don't solve the problem then you might as well go to step three, otherwise stop with one and two.
    If you have backups and cannot get the files to open then your only other choice will be to restore from the backup copies. Either way I would make sure that my disk was healthy, by following the above noted steps, before doing the restore, otherwise you may corrupt the restored copy.
    Good Luck and let us know if this helps!!

  • I was having an issue opening a spreadsheet with the file extension .xlsm. This appears as an attachment from a client which means macros were utilized when creating the spreadsheet. The problem lies in. The iPads ability to open the attachment. I downloa

    I was having an issue opening a spreadsheet with the file extension .xlsm. This appears as an attachment from a client which means macros were utilized when creating the spreadsheet. The problem lies in. The iPads ability to open the attachment. I downloaded the numbers app thinking this would be a default software to open any and all spreadsheets.
    Please Help!
    Ipad 2- iOS5

    You may need a version without macros on it. Unfortunately, pretty much all apps are skinned down versions of their original program, often with less functionality. For example in a word document I can italicize,bold and underline, but I only have a handful of fonts to play with and I don't think I can insert tables or images.
    It is very possible that the app simply cannot run macros, which means that document may never work on an iPad.

  • Troubleshooting issues opening Excel spreadsheets

    Platform: SP 2010 service pack 2. Office 2010, windows 7 on user laptop , IE 9 32 bit browser.
    several users started calling recently about problems opening Excel spreadsheets. They are on different SharePoint sites on the same site collection.
    No changes/patches have been made to SharePoint.
    No changes to the site collection features of configuration of which I am aware.
    The site collection is configured that users clicking on a doc library item opens in the application associated with the file type.
    When I, as a farm admin (which I need to do due to permissions), and I click on the Excel documents on person 1's troubled site, they open in Excel as expected.
    When the person reporting the problem clicks on the Excel spreadsheets, he gets one of two behaviors.
    On the first paginated page (documents 1-31) , if he clicks on an Excel document, two instances of the Excel application opens.
    On page 3 (documents 61-90) when he clicks on an Excel document, the excel data appears within the web page itself with a button at the top that says "Open in Excel". When he clicks that, he gets an error box that states
    To open this workbook, your computer must have a version of Microsoft Excel installed and your web browser must support opening files directly from Excel in the browser.
    This of course is interesting since on the first page, clicking on one of the documents uses the version of Excel installed and opens the file directly.
    None of these behavior, of course, can I duplicate.
    And, just to add another confusing item to the list, if this person goes to a different doc library and everything works fine.
    So this does not seem to be related to add-ons (why would add-ons act differently between sites?).
    The sites that I have examined all have the same advanced setting regarding opening the document in the client app rather than the browser.
    I have not yet started the process of having a repair on Office 2010 be broken in a way that on different pages different behaviors occur?

    Well, after the admins performed the repair on Office 2010, the user was able to click on Excel workbooks and have them open as expected.

  • Can I read changes in an open Excel spreadsheet?

    Can I make changes to an open Excel spreadsheet and have a Vi read the spreadsheet containing the changes?

    There are several examples for working with excel in the example finder (Help>>Find Examples). Here is a recent discussipon about this.
    Try to take over the world!

  • Linking Excel Spreadsheet to Numbers

    I know how to place an Excel Spreadsheet into Numbers and subsequently save it as a Numbers file. Once the Numbers file is established is there a way to export data changes made while working in the original Spreadsheet in Excel direct to the Numbers file created without resaving a new file in Numbers ?

    Hi Lawrie,
    Numbers has a different philosophy from Excel. I find Numbers has a certain charm with its small, discrete tables on a canvas, instead of sheets that are "oceans" dotted with "islands" of data. Numbers allows data input tables, "engine room" tables where the serious number-crunching happens, and "presentation" tables for results.
    Happy Numbers, and thanks for the two gold stars.
    Regards,
    Ian

  • Opening Excel files in Numbers 08

    I have just downloaded iworks08 to my new macbook pro. I have a trial edition of microsoft excel for mac downloaded as well. I have noticed that I am not able to open excel files in numbers 08. Is this true? Is it not feasible to open excel files in numbers o8? In addition, I have not been able to open numbers files in excel. Is this also true? I have used iwork 09 trial, and noticed that you are able to open and create excel files. I assume this was part of the upgrading from 08 to 09 iworks.
    Could someone please confirm the above questions? In addition, is there any way to open and/or create excel files in numbers 08? Thank you.

    mlnott wrote:
    I have just downloaded iworks08 to my new macbook pro. I have a trial edition of microsoft excel for mac downloaded as well. I have noticed that I am not able to open excel files in numbers 08.
    It depends of the format used to save them.
    I have not been able to open numbers files in excel.
    Normal, the default format is Numbers only.
    I have used iwork 09 trial, and noticed that you are able to open and create excel files. I assume this was part of the upgrading from 08 to 09 iworks.
    There are few changes on this subject.
    Is there any way to open and/or create excel files in numbers 08?
    For open see response above.
    To create Excel file with Numbers '08, use the Export menu item.
    I wish to add that with every copy of iWork '08, Apple deliver well done PDF *_User Guides_*.
    Yvan KOENIG (VALLAURIS, France) dimanche 11 avril 2010 21:39:07

  • How do I fill an Excel spreadsheet with the contents of a DataTable? (C#, OleDb)

    The following fills a DataTable with the contents of an Excel spreadsheet.
        oledbCmd.CommandText = "SELECT * FROM [" + stSheetName + "$]";
        DataTable dtDataTable = new DataTable();
        using (OleDbDataAdapter oledbAdapter = new OleDbDataAdapter(oledbCmd))
        oledbAdapter.Fill(dtDataTable);
    How do I fill an Excel spreadsheet with the contents of a DataTable?
    bhs67

    You can try this Excel library, it can help u to
    export datatable to excel to Database.
    After add the reference to your project ,add the following code:
    private void button1_Click(object sender, EventArgs e)
    //connect database
    OleDbConnection connection = new OleDbConnection();
    connection.ConnectionString @"Provider=""Microsoft.Jet.OLEDB.4.0"";Data Source=""demo.mdb"";User Id=;Password="
    OleDbCommand command = new OleDbCommand();
    command.CommandText = "select * from parts";
    DataSet dataSet = new System.Data.DataSet();
    OleDbDataAdapter dataAdapter = new OleDbDataAdapter(command.CommandText,connection);
    dataAdapter.Fill(dataSet);
    DataTable t = dataSet.Tables[0];
    //export datatable to excel
    Workbook book = new Workbook();
    Worksheet sheet = book.Worksheets[0];
    sheet.InsertDataTable(t, true, 1, 1);
    book.SaveToFile("insertTableToExcel.xls");
    System.Diagnostics.Process.Start("insertTableToExcel.xls");
    http://www.e-iceblue.com/Tutorials/Spire.XLS/Spire.XLS-Program-Guide/Data-Export-/Import-Export-Datatable-to-Excel-from-Database.html

Maybe you are looking for

  • PDF won't display correctly after being sent from iPad/iPhone

    Hi, Wondering if anyone can help me, we have a PDF come in to one of our users outlook accounts, it opens fine on the computer. However, he has then proceeded to forward this to a colleague through his iPad and when the colleague opens it on their co

  • How to unlock ipohone 4

    hi. I bought an iphone 4 from someone on Facebay and it was working but after one week I can't make or receive calls. I showed it to someone in the Town and he thinks it needs to be unlocked. can you help me to unlock my phone?

  • Set up withholding tax

    Hi I have created an sales invoice .whenever I transfer to A/r invoice ,after putting tax code ,it opens withholding tax for editing . It pops up with the window  .So far I have defined withholding tax ,tax categories ,tax  codes . When I try to chos

  • Vista full screen slowness

    we, as a company, are trying to create some interactive videos, using Flash CS3 and/or CS4. main end user (CEO) wants the videos to run full screen, so they are being published as .exe files. when running the videos on any computer using Vista O/S, t

  • "DFS Replication service is not installed" but event viewer is showing 4202 and 4204 for the server

    There are two servers replicating file information, sending member is Server 2008 R2 Datacenter, the receiving member is Server 2003 R2 Standard. There have been no serious problems with this replication set previously. Running a health report shows