Illustrator CS5 - Coping of Excel and paste into Illustrator

I just upgraded from CS3 to CS5 and I'm running into a major issue. When I used to copy Excel charts in Illustrator CS3 it should paste vector illustrations, but now with CS5 it sticks in as a jpeg image.

I would like to excel charts paste as they did with CS3 as vector illustrations with access, lines and text paths. Anyone know how I can get there?

Thank you

Simplymitra

I have the same problem (Mac OS 10.6) - but I have Office 2004 and 2008 is installed.  I prefer 2004, but when I copy and paste in Illustrator since 2004, I get a picture.  If I open the file with 2008 excel and copy and paste from there, I get vectors.  So, my solution is to use Excel 2008.  Hope that helps.

Tags: Illustrator

Similar Questions

  • Copy to leave Excel and paste in XTable

    Hello

    Is there a way where I can copy data in row/column of excel and paste it into the XTable column / line. I need this feature in DIAdem 11.1 using Windows 7.

    Looking forward for your help at the earliest

    Thanks in advance

    Priya

    Hi Priya,

    Here is an example of using either from the keyboard or a button to retrieve the contents of the Clipboard and add them to the XTable from assets (last clicked) cell in the XTable.

    Brad Turpin

    Tiara Product Support Engineer

    National Instruments

  • How to copy and paste into the search engine does not work?

    How to copy and paste into the search engine does not work?

    It should be.

    Restart your Mac and try again.

    Other than that, make sure that OS X is updated.

    Open the App Store, and then select the updates menu.

  • I copy a picture in paint and cultures. Please why don't can't I can copy and paste into my photos

    I select a photo of my photos and copy and paste into paint. I then crop the image to the size I want. My question is why slope I copy and paste the result back in my photos. I select all, then copy but I cannot pick up in my photos.

    'Wally Wallis' wrote
     

    I select a photo of my photos and copy and paste into paint. I then crop the image to the size I want. My question is why slope I copy and paste the result back in my photos. I select all, then copy but I cannot pick up in my photos.

     
     
    Use the file > save as options
  • When I copy and paste into my Corel Draw, the image is distorted with the cutting tool

    Original title: the cutting tool false image

    I used snipping too long without problem.  Now all of a sudden (only when I copy and paste into my Corel Draw) the image is distorted.  I use windows 7 64-bit.

    Hi Diana,

    1 have you ever done any recent hardware or exchange of software on your computer before the show?

    2 have you tried to check the issue with another application?

    3. what files are copy you / paste in Corel Draw, using the cutting tool?

    If the problem is specific to Corel application, then I suggest you to contact the Corel Support for assistance.

    Corel communities:

    http://www.Corel.com/Corel/pages/index.jsp?PgId=800085

    Supported Corel:

    http://www.Corel.com/Corel/pages/index.jsp?PgId=800170

    For reference:

    The cutting tool: frequently asked questions: http://windows.microsoft.com/en-in/windows7/snipping-tool-frequently-asked-questions

     

    Snipping Tool to capture screen shots:

    http://Windows.Microsoft.com/en-in/Windows7/use-Snipping-Tool-to-capture-screen-shots 

    I hope this helps.

  • I can't copy and paste into the InDesign application.

    I can't copy and paste into the InDesign application. He worked a couple of days.

    OS version? How do you paste copy operations? Menu, shortcut, right-click?

    Have you tried trashing the prefs? See replace your preferences

  • can moving layers between files, be done apart from copy and paste into a new layer?

    moving layers between files

    can it be done apart from copy and paste into a new layer?

    If you want to copy (not move) a layer to another file, click and drag the layer in the layers Panel on the other image.

    'Move' means remove the layer from the source file.

  • work copy and paste into iTunes 12

    How can I copy the work of a song and paste it into the work for another? In addition, in older versions o iTunes you can scroll the playlist and the cover of the album would scroll. Y at - it a display that allows only 12 iTunes?

    Art Starr wrote:

    How can I copy the work of a song and paste it into the work for another? In addition, in older versions o iTunes you can scroll the playlist and the cover of the album would scroll. Y at - it a display that allows only 12 iTunes?

    Right click on the song, select 'get info '.  Go to the tab of the work.  Click on the image, and then press command + C to copy it.  Find the song you want to paste the artwork, right-click on it, select "get info."  Go to the tab of the work.  Press command-V to paste.

    To answer your last question, Cover Flow (what you describe) is no longer in effect.

  • Copy and paste into Vista Winmail.

    Hello

    How can I copy and paste a complete email, text, AND images in Vista Winmail? When I try, I highlight text and images and copy all the t5he highlighted text and images, but when I paste into Word or Notebook, the text has been copied, with empty spaces where the photos were.

    Happy to help you!

    Steve

  • Copy of Doc1 and paste into Doc2 - Center of page

    Hello to everyone on the forums,

    I use the code below to open "doc1" and paste its contents into "doc2.

    Could someone please help me ensure doc1 is glued in the Center of the doc2?

    Doc2 is larger, and objects stick currently biased, flower on the side of left hand and Center on the axis y

    If there is a way to stick directly to the Center? or otherwise, all move to the Center after pasting?

    Thank you!

    ------------------------------------------------

    Open the external doc BMDFile

    var BMDFile = "CheminMonFichier".

    App.Open (BMDFile);

    var doc1 = app.documents [0]; the external doc BMDFile

    var doc2 = app.documents [1];  currently open blank doc

    for (i = 0; i < doc1.pages.length; i ++)

    {

    If (doc2.pages.length < i + 1) {}

    Doc2.pages.Add ();

    }

    to avoid changing the order of the Group

    var myObj = new Array;

    myObj = app.activeWindow.activePage.pageItems;

    app.activeWindow.activePage.groups.add (myObj);

    two copies

    Doc1.pages [i].pageItems.everyItem (). Duplicate (Doc2.pages [i]);

    all separate

    {with(App.documents[1])}

    While (groups.length! = 0) {}

    groups.everyItem () .ungroup ();

    }

    }

    };

    close the external BMDFile doc, do not save the changes

    app.activeDocument.close (SaveOptions.no);

    Hello

    2nd parameter of group.duplicate(to, by) method ==> which is an array - amount to compensate for the new position of the original group.

    If your position is correct, you may need to use [mX, 0] ==> where mX is a different between the center of doc2.pages [0] and doc1.pages [0].

    I mean

    //...
    var mX = (doc2.pages[0].bounds[3] - doc2.pages[0].bounds[1] ) / 2 - (doc1.pages[0].bounds[3] - doc1.pages[0].bounds[1] ) / 2;
    

    and

    //...
    doc1.pages[i].pageItems.everyItem().duplicate(doc2.pages[i], [mX, 0]);
    

    Jarek

  • File Word copy and paste into Indesign - the easy way?

    Hello

    What is the easy way to copy multiple pages with a text. file doc.x (Office Word) - and paste it into Indesign, and then change everything in Indesign?

    Place the Word document using a primary text block so that the pages of reflow. You can also combine styles.

  • Takes are silent when copied and pasted into the new track

    After recording several takes of a vocal part and a model gliding around how I like it, I decided to dub the voices and use another part of the (unused) takes.

    I created a new title in doubles (CMD - D) and pasted the vocal track (including), but the new double track is silent.  I can see the track and everything going out there and tried to remove plugins, copy and paste in different ways, but the track and just stay silent.  I can see them all here in the new track, and all that I can see, they should be heard.

    I tried this search anywhere online and cannot find any mention of this problem anywhere.  Is this just a bug?  I forgot something?

    What version of logic you use.

    It worked well here with 10.2.4

    Also how do you 'stick it '?

    After a screen capture of your page to organize with open mixer

  • Recently, a problem began when I cut-and - paste into a new E-Mail. Sending error. Message indicates error attaching "call_skype_logo.png." File not found

    The message send failed.
    There was an error of fixing call_skype_logo.png. Please check if you have access to the file.

    I did not indicate the Ctrl + V, I suggested that Ctrl + Shift + V, and if I didn't, it was a mistake.

    What is happening is that information from the copy of the web page contains an image that is not visible and can be invoked with javascript. Thunderbird is sticky to ok, but when you try send this image (common, through the internet, as Skype image that appears with facebook, twitter etc. can not be found. I don't really know what code complex your copy and paste and I doubt you do one. CTRL + SHIFT + V just glue the text without frills. Nothing else and should have no problem at all because the reference to the image should be absent.

  • Cannot add gradient to the sphere of shape and can not copy and paste into Photoshop?

    I just want to add a gradient to the circles of my calendar.  Still the same window appears saying that it is not directly editable. Any reason why the step does not work? Another concern is that forms don't simply copy a paste in photoshop as they usually do in other adobe software, it feels like a layer must be included to add or delete anything. How can I do the whole copy and paste in photoshop easier for me that I am new to it?  Any help would be appreciated, thank you!

    Screen Shot 2015-09-21 at 12.20.31 PM.png

    Hi lucyl,.

    Thank you that you have tried.

    I'll tell you that in your screen you sent, please check it's going up in the Finder menu bar.

    Click on Go-> Go to folder

    Type ~/library

    Click OK

    Inside the library folder, you will find a folder with name preferences.

    Open this folder

    Inside this folder, you'll find another folder named Photoshop CC 2015 parameters

    Rename this folder in 2015 CC Photoshop settings_old.

    Open Photoshop and try again.

    Here is the link that will help you access to / find the library user on MAC: library user access hidden files. Mac OS 10.7 and later

    Concerning

    Jitendra

  • Where is the arrow to copy and paste into the reader 11 DC? I can not find and use a lot.

    Help please because I can not find the arrow for the copy and paste tool in DC. They had one in the previous version, making it easy to find. I'm totally lost and need to find it.

    Hi Robin,

    In Acrobat Reader ms, you will find the option arrow in the Dock at the rate at the bottom of the page once you open the PDF file. It gets changed to the selection tool, once you place the cursor over the text or image, after selecting it you can easily copy (Ctrl + C) & Paste (Ctrl + V) it.

    Kind regards

    Nicos

Maybe you are looking for

  • DV7-3085dx: change the main HDD for Pavilion

    Hello! I'm trying to change my HARD drive of the main slot to the second, is it possible to make the second main drive instead of the default value? When I turn on my computer right now it says the message "no booteable devices." Thank you!

  • How can I add a digital camera as a web cam

    I have a camera digital sony dsc - v1 and I would like to know if I could use it as a webcam? If possible how do I get there, I just bought the cam and it came with no instruction book. So I just a device with buttons, which as far as I know on this

  • Palm TX is unable to find the new router

    At my TX consecutive years on my Netgear router with aol. A week ago I changed to Virgin Media, which provided me with a new Netgear modem/router "n". My laptop picked up right away and is all set up. My Palm not cannot see it at all. I understand no

  • Zoom deaktivieren

    Wie kann ich in Adobe Muse den Zoom auf Handys deaktivieren? Obwohl ich Haltepunkte eingefugt habe, kann auf der Mobile Version der Bildschirm gezoomt werden, was unpleasant Ansichten führt zu. Dies deaktiviert werden kann?

  • No vmnic after update

    HelloAfter the update of esx4.1 to 5 and vm migration, I get no devices eth to the virtual machine. Ubunto says no device. Vmx are two configured in the file. MAC addresses are OK. Machine virtual windows are OK.ifconfig eth0eth0: error reading inter