I created a spreadsheet using Microsoft office 2010 Excel.  When I open the sheet using Numbers, the formatting changes.  How do I fix this?

I created a spreadsheet using Microsoft office 2010 Excel.  When I open the sheet using Numbers, the formatting changes.  How do I fix this?

If you plan to share or work with people who regulary use MS Excel you should not try to use this in Numbers.  You will have constant problems with how each program translates the formatting.
If you want to use Numbers, use it exclusively.  If it is for your job use the tool your company uses.

Similar Messages

  • AfterI store websites using BookMarks, they are lots when I go back to get them....How do I fix this problem..??

    After I Bookmark websites, they are lost when I go back to get them...How do I fix this problem...??

    Which albums are you trying to add them to ? You should be able to add them to new albums that you've created directly on the iPad, but you can't add photos to albums that were synced from a computer.

  • HT201412 I have app - My Picasso - loaded last week, version 1.02, 17 Nov 2010.  When I open and tap Picasa featured photos, it crashes. how do I fix?

    When I open and tap PIcasa featured photos on MY Picassa version1.02, 17 Nov 2010, it crashes.  Any suggestions what is wrong?

    Try basic troubleshooting steps,
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Quit the app completely and restart the iPad. Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar. Restart the iPad.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Delete the app and download it again. Tap and hold down on the app icon until it wiggles and then tap the X to delete it. Tap the home button to stop the apps from wiggling. Download the app again in the Purchased tab of the app store using the same ID that you bought the app with.

  • How do I use microsoft office 2010 on imac?

    Hi, I would like to use microsoft office 2010 on my imac for school purposes, how can I accomplish that?

    I suggest that you get the student version of 2011 for mac. i believe it is around 120us or so on amazon or the apple store. The other option would be to use 2010 for windows running paralles or a similar Windows emulator.
    Cheers

  • On cleanuing up COM object when using Microsoft.Office.Interop.Excel

    When using Microsoft.Office.Interop.Excel the COM objects that are created by the code must be released using System.Runtime.InteropServices.Marshal.ReleaseComObject().
    Most of the time it's pretty clear when a new COM object is created such as:
    Excel._Application excelApp = null;
    Excel._Workbook wb = null;
    Excel._Worksheet ws = null;
    Excel.Range newRange = null;
    try
    // four COM objects are created below
    excelApp = new Excel.Application();
    wb = excelApp.Workbooks.Add();
    ws = (Excel.Worksheet)wb.Worksheets.Add();
    newRange = (Excel.Range)ws.Range["A1","A30"];
    // do these line of cod create new COM object?
    newRange.Font.Bold = true;
    newRange.Borders.Color = borderColor;
    finally
    if (excelApp != null) Marshal.ReleaseComObject(excelApp)
    if (wb != null) Marshal.ReleaseComObject(wb)
    if (ws != null) Marshal.ReleaseComObject(ws)
    if (newRange != null) Marshal.ReleaseComObject(newRange)
    In the above code I create four COM objects in the first part that need to be released when I'm finished with them. But it's not clear if the other two lines of code create a new COM object or not.  If they do then my code needs to look more
    like this:
    Excel._Application excelApp = null;
    Excel._Workbook wb = null;
    Excel._Worksheet ws = null;
    Excel.Range newRange = null;
    Excel.Font fnt = null;
    Excel.Borders bds = null;
    try
    // four COM objects are created below
    excelApp = new Excel.Application();
    wb = excelApp.Workbooks.Add();
    ws = (Excel.Worksheet)wb.Worksheets.Add();
    newRange = (Excel.Range)ws.Range["A1","A30"];
    // do these line of cod create new COM object?
    fnt = newRange.Font
    fnt.Bold = true;
    bds = new newRange.Borders;
    bds.Color = borderColor;
    finally
    if (excelApp != null) Marshal.ReleaseComObject(excelApp)
    if (wb != null) Marshal.ReleaseComObject(wb)
    if (ws != null) Marshal.ReleaseComObject(ws)
    if (newRange != null) Marshal.ReleaseComObject(newRange)
    if (fnt != null) Marshal.ReleaseComObject(fnt)
    if (bds != null) Marshal.ReleaseComObject(bds)
    How can I tell if getting a property creates a new COM object or not?

    Thank you for your replay but I do understand that the font object is a COM object.  What I'm trying to figure out is if a NEW object is created each time I access the font member of a Range object and if I need to call
    Marshal.ReleaseComObject on the font object after using it.
    Most member object of an object are a single instance and each time you access the member you simply get the pointer to that instance. For example:
    using(DataTable dt = new DataTable("Some Table Name"))
    PropertyCollection ep1 = dt.ExtendedProperties;
    PropertyCollection ep2 = dt.ExtendedProperties;
    if (Object.ReferenceEquals(ep1,ep2)) Console.WriteLine("They are the same object");
    else Console.WriteLine("They are different objects");
    The output will be: They are the same object
    On the other hand this:
    Excel._Application excelApp = new Excel.Application();
    Excel._Workbook wb = excelApp.Workbooks.Add();
    Excel._Worksheet ws = (Excel.Worksheet)wb.Worksheets.Add();
    Excel.Range newRange = (Excel.Range)ws.Range["A1","A30"];
    // do these lines of code create new COM object?
    Excel.Font ef1 = newRange.Font;
    Excel.Font ef2 = newRange.Font;
    if (Object.ReferenceEquals(ef1,ef2)) Consloe.WriteLine("They are the same object");
    else Consloe.WriteLine("They are different objects");
    The output will be: They are different objects
    It looks like each time I access the font member I get a new object.  I suspect that is not the case and what I am getting is two pointers to the same object and the reference counter is incremented by one.
    So really the question is what happens to the font member object of the Range object when the range object is released.  I assume the font member will be released along with the Range object ever if the font object has a reference count greater then
    0.
    If I am correct in my assumption then I can access the font member object as much as I need to without worrying about releasing it.
    I have been reading a lot about working with COM and the need to use Marshal.ReleaseComObject and there does seem to be a lot of disagreement and even confusion on the
    mater about when and if COM objects need to be explicitly released.

  • I am using MS Office 2010 and Windows XP Professional, can I use iCloud for backup of my files and documents?

    I am using MS Office 2010 and Windows XP Professional, can I use iCloud for backup of my files and documents? I am planning to transition to a Mac so using the iCloud seems to make the most sence.

    No, it is not a backup method at all.  If you delete a sync'd file on any device, you delete it permanently from iCloud.  That by its very essence is not a backup solution therefore.  A backup solution does not automatically and simultaneiously delete the file everywhere when it is deleted from the original source.
    iCloud is strictly a syncronization tool for using files on multiple internet connected devices.

  • ICloud will not sync my contacts or calendar in Mac Office 2011. ICloud does however sync to my PC at work running Microsoft office 2010 and also to my IPad and IPhone. Does anyone know how to fix this?

    ICloud will not sync my contacts or calendar in Mac Office 2011. ICloud does however sync to my PC at work running Microsoft office 2010 and also to my IPad and IPhone. Does anyone know how to fix this?

    Welcome to the Apple community.
    Unfortunately Office for Mac does not support the correct protocols to work with iCloud.

  • How to install & use microsoft office (word,excel,powerpoint) in ipad?

    1.How to install & use microsoft office (word, excel, powerpoint) in ipad?
    2. How to delete applications in ipad once it is installed?

    Microsoft  Office won't work on iPad.
    Try Apps like:
    1. Documents To Go
    2. Quick Office Pro HD
    3. Office2 HD

  • So I have been creating a logo for my company and it came out great. The problem is, when I format it for PNG or when I want to use it on freshbooks or my webpage, the image becomes blurred and the text is not as clear. How do I fix this?

    So I have been creating a logo for my company and it came out great. The problem is, when I format it for PNG or when I want to use it on fresh books or my webpage, the image becomes blurred and the text is not as clear. How do I fix this? Is it because the text get shrunk?

    This is how it looks on adobe illustrator

  • I just bought a 13inch mac book with retina display. When Im using adobe illustrator or photoshop, the fonts and designs look pixelated! How can I fix this?

    I just bought a 13inch mac book with retina display.
    2.4GHz dual-core Intel Core i5 processor with 3MB shared L3 cache. Version 10.9.4 / OS X Mavericks
    When Im using adobe illustrator or photoshop, the fonts and designs look pixelated!
    How can I fix this?

    WOW!!
    That was great to hear.
    I have just read this tread: https://forums.adobe.com/thread/1626784?start=0&tstart=0
    So therefore I was worry about Illustrator which I use most of all programs.
    Thank you !!

  • I JUST BOUGHT AND INSTALLED A LINKSYS E1200 WIRELESS N ROUTER AT HOME. MY IPHONE CONNECTS WITH A STRONG SIGNAL BUT WHEN I TRY TO USE THE INTERNET IT JUST LOADS FOREVER. HOW CAN I FIX THIS?????!!!!

    I JUST BOUGHT AND INSTALLED A LINKSYS E1200 WIRELESS N ROUTER AT HOME. MY IPHONE CONNECTS WITH A STRONG SIGNAL BUT WHEN I TRY TO USE THE INTERNET IT JUST LOADS FOREVER. HOW CAN I FIX THIS?????!!!!

    RESET YOUR ROUTER
    No. Reset your router.

  • In the new IOS 7, my IMessage and FaceTime won't let me log in using the correct Apple ID and password. How can I fix this?

    In the new IOS 7, my IMessage and FaceTime won't let me log in using the correct Apple ID and password. How can I fix this?

    Other users have reported same problem with 4G iPod/iOS 6.1.6 and I have not seen a solution. One user reported yesterday or the day before that it just started working again.

  • We use Adobe Acrobat 10. When I try to download the most recent update, I get the error message 1608 download failed. HOw do I fix this.

    We use Adobe Acrobat 10. When I try to download the most recent update, I get the error message 1608 download failed. How do I fix this?

    uninstall acrobat, clean (if windows os), Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs and then reinstall.

  • I'm using Photoshop CC 2014, when I open a picture and movie it to a different Photoshop page, the picture turns black and white. How do I fix this problem?

    I'm using Photoshop CC 2014, when I open a picture and movie it to a different Photoshop page, the picture turns black and white. How do I fix this problem?

    Nobody can tell you anything without proper system info or other technical details since even your terminology is confusing. there are no "pages" in Photoshop. What you describe in vague terms could be anything from your target document having a different color mode/ color profile to some hardware acceleration issue, but we really can't make any sense of it based on your information.
    Mylenium

  • When I try to play a song it says " The song "Take a Chance on Me" Could not be used because the original file could not be found" how do I fix this?

    When I try to play a song it says " The song "Take a Chance on Me" Could not be used because the original file could not be found" how do I fix this?

    1. delete this songs from your liblary
    2. go File -> Add File to Liblary... (Ctrl+O) or File -> Add Folder to Liblary

Maybe you are looking for