Excel graphs in Word document are totally black

I have a large word document that contains quite a few excel graphs.  Many of the graphs translated into acrobat fine, but some of them are totally black with the line portion of the graph showing up on a black background.  Any ideas what may be causing this?

If you are having problems creating a PDF, there are two steps you should do FIRST
Go to the appropriate vendor web site and apply all updates to the program you are using (several recent messages have concerned problems with MS Word conversion, with the response that different versions of Word have different BUGS that must be fixed by a download from Microsoft - and MS Office products are not the only ones which may, from time to time, need to be updated to work properly)
Go to the Acrobat update page and apply the updates for your version of Acrobat
IN NUMBER ORDER (updates are not cumulative so, using version 8 as an example, you must apply 8.1.0 before the 8.1.1 update)
http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows
Acrobat 7.0 has several updates to apply

Similar Messages

  • Am unable to insert table and graphs into word document in labwindow/CVI? can any one help me ?

    Am unable to insert table and graphs into word document in labwindow/CVI? can any one help me ?

    Are you using the Word Report Generation instrument? You can find it in toolslib\activex\word\wordreport.fp under the CVI directory.
    The instrument comes with a sample project that shows how to include table and graphs in a Word document: see samples\activex\word\wordrpt.cws in the samples foder of your CVI installation.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Files/word documents are grey how to access to enble uploadd

    In Finder files and word documents are grey . How do I make them Black so I can access documents and upload.  Is there a fix for this problem ?
    Before upgrade of Maverick there was not a problem.

    Select
    View ▹ Show View Options
    from the menu bar. In the dialog that opens, select
    Arrange by: None

  • OLE: Why placeholders of MS Word document are not replaced?

    Hi Experts, I am using OLE to create Word Documents within a LOOP. The problem I have is that the Word Documents are created and seved well but the placeholders (&nom_prov') and (&ncod_prov') are not replaces by the values (in the example: test1 and test2).
    Anybody can help me in with that issue?
    LOOP AT lt_partner1 INTO ls_partner1.
      AT FIRST.
        CREATE OBJECT zword 'WORD.BASIC'.
        CALL METHOD OF zword 'FILEOPEN' EXPORTING #1 = 'C:\DOCS\PRUEBA_1.DOC'.
      ENDAT.
      CALL METHOD OF zword 'EDITSELECTALL'.
      CALL METHOD OF zword 'EDITCOPY'.
      CALL METHOD OF zword 'FILENEW'.
      CALL METHOD OF zword 'EDITPASTE'.
      CALL METHOD OF zword 'STARTOFDOCUMENT'.
    CALL METHOD OF zword 'WW2_EDITREPLACE' EXPORTING #1 = '&cod_prov'
        #2 = 'test 1'. "ls_partner1-nif.
      CALL METHOD OF zword 'WW2_EDITREPLACE' EXPORTING #1 = '&nom_prov'
        #2 = 'test 2'. "ls_partner1-name_org1.
      CALL METHOD OF zword 'STARTOFDOCUMENT'.
      CALL METHOD OF zword 'EDITSELECTALL'.
      CALL METHOD OF zword 'EDITCLEAR'.
      CALL METHOD OF zword 'EDITPASTE'.
      lv_contador = lv_contador + 1.
      CONCATENATE 'C:\DOCS\' 'PRUEBA' lv_contador '_' sy-datum '.DOC' INTO  lv_file_save_as.
      CALL METHOD OF zword 'FILESAVEAS' EXPORTING #1 = lv_file_save_as.
      CALL METHOD OF zword 'DOCCLOSE' EXPORTING #1 = 2.
    AT LAST.
       CALL METHOD OF zword 'APPCLOSE'.
       FREE OBJECT zword.
    ENDAT.
    ENDLOOP.

    Hello, I have found out what was the problem. In the end I have used method EDITREPLACE and not WW2_EDITREPLACE and I put the method EDITREPLACE more to the end of my ABAP Code:
    REPORT  z_prueba_oliver.
    TYPES: BEGIN OF ty_partner,
                 nif            TYPE bu_partner,
                 name_org1      TYPE bu_nameor1,
                 conting_com    TYPE c LENGTH 2,
                 fecha_efecto   TYPE zbufecha_ef,
                 END OF ty_partner.
    DATA:  lt_partner1     TYPE TABLE OF ty_partner,
                 ls_partner1     TYPE ty_partner,
                 lv_file_save_as TYPE c LENGTH 40,
                 lv_contador     TYPE n LENGTH 3.
    * Include necesario para la declaracion de objetos OLE2
    INCLUDE ole2incl.
    * Declaraciones para la llamada a WORD.
    DATA zword TYPE ole2_object.
    CLEAR zword.
    ls_partner1-nif = 'X7510034M'.
    ls_partner1-name_org1 = 'Razon Social 1'.
    APPEND ls_partner1 TO lt_partner1.
    ls_partner1-nif = 'X7510034M'.
    ls_partner1-name_org1 = 'Razon Social 2'.
    APPEND ls_partner1 TO lt_partner1.
    ls_partner1-nif = 'X7510034M'.
    ls_partner1-name_org1 = 'Razon Social 3'.
    APPEND ls_partner1 TO lt_partner1.
    ls_partner1-nif = 'X7510035M'.
    ls_partner1-name_org1 = 'Razon Social 4'.
    APPEND ls_partner1 TO lt_partner1.
    ls_partner1-nif = 'X7510035M'.
    ls_partner1-name_org1 = 'Razon Social 5'.
    APPEND ls_partner1 TO lt_partner1.
    LOOP AT lt_partner1 INTO ls_partner1.
      AT FIRST.
        CREATE OBJECT zword 'WORD.BASIC'.
    * Se abre el fichero que contiene la plantilla de la carta
        CALL METHOD OF zword 'FILEOPEN'
          EXPORTING
          #1 = 'C:DOCSPRUEBA_1.DOC'.
      ENDAT.
    * Se selecciona todo el texto del archivo PRUEBA_1.DOC
      CALL METHOD OF zword 'EDITSELECTALL'.
    * Se copia el texto seleccionado al portapapeles
      CALL METHOD OF zword 'EDITCOPY'.
    * Se crea un documento nuevo, al que WORD llama documento1
      CALL METHOD OF zword 'FILENEW'.
    * Se pega el texto del portapapeles a documento1
      CALL METHOD OF zword 'EDITPASTE'.
    * Posicionar al principio del documento
      CALL METHOD OF zword 'STARTOFDOCUMENT'.
    * Posicionar al principio del documento
      CALL METHOD OF zword 'STARTOFDOCUMENT'.
    * Se selecciona todo
      CALL METHOD OF zword 'EDITSELECTALL'.
    * Se borra la selección
      CALL METHOD OF zword 'EDITCLEAR'.
    * Se incorpora el texto original de PRUEBA_1.DOC
      CALL METHOD OF zword 'EDITPASTE'.
    *IF ls_partner1-conting_com is initial.*
       *CALL METHOD OF zword 'EDITREPLACE'*
        *EXPORTING*
        *#01 = '#linea2y3#'*
        *#02 = 'texttexttexttext'*
        *#03 = 0*
        *#04 = 0*
        *#05 = 0*
        *#06 = 0*
        *#07 = 0*
        *#08 = 0*
        *#09 = 0*
        *#10 = 1*
        *#11 = 0*
        *#12 = 1.*
    *else.*
         *CALL METHOD OF zword 'EDITREPLACE'*
        *EXPORTING*
        *#01 = '#linea2y3#'*
        *#02 = 'texttexttexttext'*
        *#03 = 0*
        *#04 = 0*
        *#05 = 0*
        *#06 = 0*
        *#07 = 0*
        *#08 = 0*
        *#09 = 0*
        *#10 = 1*
        *#11 = 0*
        *#12 = 1.*
    *ENDIF.*
      *CALL METHOD OF zword 'EDITREPLACE'*
        *EXPORTING*
        *#01 = '#codprov#'*
        *#02 = ls_partner1-nif*
        *#03 = 0*
        *#04 = 0*
        *#05 = 0*
        *#06 = 0*
        *#07 = 0*
        *#08 = 0*
        *#09 = 0*
        *#10 = 1*
        *#11 = 0*
        *#12 = 1.*
      CALL METHOD OF zword 'EDITREPLACE'
        EXPORTING
        #01 = '#nomprov#'
        #02 = ls_partner1-name_org1
        #03 = 0
        #04 = 0
        #05 = 0
        #06 = 0
        #07 = 0
        #08 = 0
        #09 = 0
        #10 = 1
        #11 = 0
        #12 = 1.
    * Se reemplaza el campo #nomprov# con el valor de la tabla interna.
      CALL METHOD OF zword 'EDITREPLACE'
        EXPORTING
        #01 = '#FECHA_EFECTO#'
        #02 = '10 de Junio de 2010'
        #03 = 0
        #04 = 0
        #05 = 0
        #06 = 0
        #07 = 0
        #08 = 0
        #09 = 0
        #10 = 1
        #11 = 0
        #12 = 1.
      lv_contador = lv_contador + 1.
      CONCATENATE 'C:DOCS' 'PRUEBA' lv_contador '_' sy-datum '.DOC' INTO lv_file_save_as.
    * Se cierra el documento activo, documento1 con opción de salir sin salvar
      CALL METHOD OF zword 'FILESAVEAS' EXPORTING #1 = lv_file_save_as.
    * Se cierra el documento activo PRUEBA.DOC con opción salir sin salvar
      CALL METHOD OF zword 'DOCCLOSE' EXPORTING #1 = 2.
      AT LAST.
    *   Se cierra WORD
        CALL METHOD OF zword 'APPCLOSE'.
    *   Se libera el objeto ZWORD
        FREE OBJECT zword.
      ENDAT.
    ENDLOOP.

  • Printing of normal word document written in black it is coming with plain paper

    I m using Hp office jet 6000, recently I have changed its ink from original store. Unfortunately when I print normal word document written in black it is coming with plain paper, however when I order a print in a mixed color the other colors appear in the paper but still the black is not coming. So I would like to ask what might be the problem and how can I fix it?
    Regards,

    Hi,
    Please check the vent first and re-seat the cartridge.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Suddenly all my Word documents are gone. What happened? Are they recoverable (no back-up hard drive or time machine)

    Suddenly all my Word documents are gone. What happened? Are they recoverable (no back-up hard drive, no time machine)?

    Greetings,
    What happened right before they went missing? (software updates, "cleaning" up the computer, etc.)
    Are your other files still there like music, movies, pictures, bookmarks, etc?
    I'm sure you've already come to this conclusion yourself, you need a back up. Its easy to do with 10.5.8 and later: http://support.apple.com/kb/HT1553.
    Try searching your account for any ".doc" files (Word documents) by going to File > Find and using the options below:
    If you don't find any of the documents you are looking for in the search window and nothing else is missing then it would be wise to get a second opinion ASAP before any chance of data recovery is lost.
    Make an appointment with a Mac Genius at an Apple store (they don't do data recovery but may be able to see something we can't see from here) or contact an Apple Authorized Service Provider to see if they can look around the hard drive for you.
    If the second opinion reveals that the data is really gone off the entire computer then you will need data recovery software or service:
    Data recovery software requires you have a separate hard drive so you'll need to buy one first. Data recovery software examples:
    http://www.prosofteng.com/products/data_rescue.php
    http://www.macintosh-data-recovery.com/
    http://www.subrosasoft.com/OSXSoftware/index.php?main_page=product_info&products _id=1
    There are many nationwide / worldwide data recovery companies out there.  Here are a few examples:
    http://www.ontrackdatarecovery.com
    http://www.drivesaversdatarecovery.com/
    http://www.totalrecall.com/
    Best of luck to you.

  • Excel table in a word document coming up black during pdf convert

    I am converting word 2003 documents to pdf using adobe professional 7.0 and an excel table inside the word document is coming out as completely filled in black after the convert.
    any help would be much appreciated.
    Thanks tim

    If you are having problems creating a PDF, there are two steps you should do FIRST
    Go to the appropriate vendor web site and apply all updates to the program you are using (several recent messages have concerned problems with MS Word conversion, with the response that different versions of Word have different BUGS that must be fixed by a download from Microsoft - and MS Office products are not the only ones which may, from time to time, need to be updated to work properly)
    Go to the Acrobat update page and apply the updates for your version of Acrobat
    IN NUMBER ORDER (updates are not cumulative so, using version 8 as an example, you must apply 8.1.0 before the 8.1.1 update)
    http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows
    Acrobat 7.0 has several updates to apply

  • Word documents are garbled when sent through Outlook Exchange. I know something in the profile folder gets corrupted. Anyone know what?

    Our school district uses the web based version of Outlook Exchange. Several of us using Apple computers have had problems when sending word documents as attachments. When received, the document is full of garbled text. This has happened with different model computers, running 10.5.x or 10.6.x. I determined that removing the items from the folder in profiles (Users-> <user> ->Library->ApplicationSupport->Firefox->Profiles-><profile folder>) the problem is resolved. However, all preferences for Firefox are then lost. Does anyone know what specific item in the folder would cause this?

    I think this is an excellent indicator that not only is Palm reviewing the feedback from the support forums here, but actively reviewing feedback/comments/wishes on other sites as well.
    As the original poster copied this (quite solid, IMO) wishlist from Pre Central, the palm support staff acknowledged first seeing it there.

  • Problem with embedded excel spreadsheet in Word document.

    I am having trouble with a word document that has an embedded excel spreadsheet in it.  If you double click on the spreadsheet to edit it, the following error message appears:
    "The program used to create this object is Excel.  That program is not installed on your computer.  To edit this object, you must install a program that can open the object."
    I know that Excel is installed on the PC.  The PC is running Windows XP SP3 x86 and Office Professional Plus 2007.  I have tried editing the spreadsheet on a PC running Windows 7
    Pro x64 with the same version of office and it works just fine.  I cannot find any differences in the setting between the two so I do not know why it works one place but not the other.
    Any ideas?

    If you double click on an Excel file in Windows Explorer, does Excel startup?  If not, right click on such a File and used the Open with item to set Excel as the default program for opening such files.
    If you need to do that, it may also overcome the issue with the embedded worksheet.
    Hope this helps.
    Doug Robbins - Word MVP,
    dkr[atsymbol]mvps[dot]org
    Posted via the Community Bridge
    "Flyguy009" wrote in message news:[email protected]...
    I am having trouble with a word document that has an embedded excel spreadsheet in it.  If you double click on the spreadsheet to edit it, the following error message appears:
    "The program used to create this object is Excel.  That program is not installed on your computer.  To edit this object, you must install a program that can open the object."
    I know that Excel is installed on the PC.  The PC is running Windows XP SP3 x86 and Office Professional Plus 2007.  I have tried editing the spreadsheet on a PC running Windows 7 Pro x64 with the same version of office and it works just fine. 
    I cannot find any differences in the setting between the two so I do not know why it works one place but not the other.
    Any ideas?
    Doug Robbins - Word MVP dkr[atsymbol]mvps[dot]org

  • My word documents are not printing

    Hi, my deskjet 2544 will not print word documents. It will print off the internet though.

    Hi,
    Sorry to hear you are having problems printing.
    What device/operating system are you printing from?
    "Although I work for HP, I'm speaking for myself and not on behalf of HP"
    "Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • MY WORD DOCUMENTS ARE GONE....HOWW..HELPPP

    HI, I CANT LOCATE MY WORD DOCUMENTS?? THEY HAVE DISSAPRERED... PLEASE HELP. THE ICON SAVED IS THERE , BUT WHENEVER I CLICK ON IT, IT SAYS WORD CANT LOCATE, PLEAE HELP

    Greetings,
    What happened right before they went missing? (software updates, "cleaning" up the computer, etc.)
    Are your other files still there like music, movies, pictures, bookmarks, etc?
    I'm sure you've already come to this conclusion yourself, you need a back up. Its easy to do with 10.5.8 and later: http://support.apple.com/kb/HT1553.
    Try searching your account for any ".doc" files (Word documents) by going to File > Find and using the options below:
    If you don't find any of the documents you are looking for in the search window and nothing else is missing then it would be wise to get a second opinion ASAP before any chance of data recovery is lost.
    Make an appointment with a Mac Genius at an Apple store (they don't do data recovery but may be able to see something we can't see from here) or contact an Apple Authorized Service Provider to see if they can look around the hard drive for you.
    If the second opinion reveals that the data is really gone off the entire computer then you will need data recovery software or service:
    Data recovery software requires you have a separate hard drive so you'll need to buy one first. Data recovery software examples:
    http://www.prosofteng.com/products/data_rescue.php
    http://www.macintosh-data-recovery.com/
    http://www.subrosasoft.com/OSXSoftware/index.php?main_page=product_info&products _id=1
    There are many nationwide / worldwide data recovery companies out there.  Here are a few examples:
    http://www.ontrackdatarecovery.com
    http://www.drivesaversdatarecovery.com/
    http://www.totalrecall.com/
    Best of luck to you.

  • My Word documents are not opening from sharepoint

    When I attempt to open a word document from sharepoint it remains stuck at "Downloading: http://intranet/document url"
    Word 2010 and SharePoint 2010
    This occurred when we restored a server after virus issue. Also I noticed that I left one of these word documents in this "downloading state" and the next morning when I opened my station the document was open... therefore it seems to just be taking
    WAY too long to open. 

    Is this SharePoint a stand alone server, where web and database are in the same box ?
    Do you know what steps changed settings from before virus, then, after virus ? Maybe people left the anti-virus running on
    military emergency mode, and it's consuming all server resources.
    You might want to check the database files' sizes, WSS_Content mdf and ldf. Is the ldf way too big ?

  • Printing of Excel graph in Word to pdf file gives scrambled graph.

    Dear All,
    This question is related to my other (solved) question of today: "Print transparent object in Word to pdf and then to printer ugly.". I didn't know how to reopen a question.
    The problem I have is that I pasted a graph from excel into word. When printing to a printer of pdf file all is ok, but when I use the PDF button in word I have get a scrambled graph with the graph line zigzagging all over the place of the graph. When pasting the graph as bitmap it have very poor resolution. Any ideas on how to solve this?
    Thanks,
    Vincent

    There may also be an issue with OFFICE 2007. I have been very disappointed in OFFICE 2007 and really prefer OFFICE 2003, not that I really use OFFICE much anyway. I know that WORD 2007 caused a lot of problems with graphics in conversion to PDF. The add-on from MS solves that problem, but creates other problems. In WORD I have seen a beautiful sunset be split into parts when WORD sent it to Acrobat and when viewed closely there were small lines at the segment boundaries. This did not happen with OFFICE 2003. As I have mentioned in other posts, it is almost as though MS purposely screwed up the output when it sees an Adobe product. I suspect if you try Excel 2003 (if available), the problem will not occur, even with the same version of Acrobat. That suggests WORD is doing something strange.
    I have also found difference in printing to the Adobe PDF printer and using PDF Maker with AA9 and OFFICE 2007. With AA9, Adobe changed the process and PDF Maker no longer uses the printer as I have been told. Thus trying both methods may indicate differences. Too bad that the attachments feature was deactivated for security reasons. Maybe it will come back some day.
    I have the same Excel version as you, but AA9.3.3. It may be the AA version that is part of the problem, but I also suspect a problem with MS. Bill

  • All Word documents are transformed into textedit format when mailed

    The problem is quite irritating as customers on PCs have problems opening the documents I send to them.
    This problems exist both Mountain Lion and Lion OS. I would be really grateful, if someone could help med with this issue.

    Dear Barney
    It seems you are life saver. I took a document and did the "cmd i"
    It showed that the default solution seemed for the system to open a file in TextEdit. I chose Word instead and have now tried to send back and forth between different servers. And right doc extentions now seem to be just right.
    I am very grateful for your help. I would wish that there was somewehere in the system, where I could check that documents should open in the format that they are sent.
    Again thank you very much
    Peder

  • Embedded images in Word documents are incorrect on one computer but show up fine on another computer

    I've not been able to find the root of the problem, but I use an application on my laptop that generates images in a document, and the document can be saved either with docx or htm/html extensions. On the laptop, I see the correct images. When I transfer
    the document to my workstation either over the network or by a flash drive, the incorrect images pop up - images from a project that I was working on last summer. If I save the documents as a doc on my laptop, the correct images show up on my desktop. This
    happens on many documents that I use, but I do have a document I use as a template. I'd prefer not to create another one, because it is quite involved.
    When the incorrect images show up on my workstation, I can save the document to a flash drive (you would think with the incorrect images also being saved), but the correct images show up on my laptop.
    This is frustrating to always have to work around this, but I've searched Google and really haven't found anyone else having a problem very close to this. Does anyone have any ideas?
    Thanks

    Hi,
    I'm actually thinking whether the issue is related to Office version. What are the versions of Office on your laptop and workstation?
    Based on the description, the issue doesn't occur if the document is saved as .doc, it only occurs if the document is saved as .docx, so basically we can say your workstation doesn't support .docx well. Is it a version prior to Office 2007?
    Regards,
    Melon Chen
    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. Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • Oracle Database on Oracle VM I/O  performance.

    Hi Experts, I am planing to run Oracle Database on Oracle VM 3.2.x, but I am confusing about one thing that I hope find answer. For a database on physical machine it is clear that Oracle Recommend to configure the storage contains the database as RAI

  • OGG-00868 SQL Server 2008 has problem with ODBC in  the EXTRACT process

    Hello Everyone I want to replicate tables between MS SQLServer 2008 and Oracle 10g I have Windows XP / MS SQLServer 2008 and Oracle Database 10g R 10.2.0.1.0 running  on Red Hat Linux I followed the steps from the white paper (http://www.oracle.com/t

  • Getting OPMN error while starting Oracle SOA Suite

    Configuration information Running in C:\product\10.1.3.1\OracleAS_1 Operation mode:Stop, App Server, No Enterprise Manager, Single Instance Oracle home:C:\product\10.1.3.1\OracleAS_1 Oracle home name:Unnamed Instance name:SOA_1.S119SNIQ056995.schneid

  • HT3576 How do I see anything other than my calendar in the Notification pull-down screen with the new iOS7?

    Just updated to iOS7.  Pulled-down new Notification screen and all it contains is a summary of my calendar for today and tomorrow.and stocks  I want to be able to see the weather but it is not visible on this screen.  Can't I do this anymore?

  • Delegate AD permissions to HR.

    Hi, In our environment we have AD 2012 R2, Lync2013, Exchange2013. No System Center Manager, no SharePoint. We want to delegete permissions to HR managers to change contact information (Department, Phone number, job title, etc.) We going to delegate