Cannot paste small Excel table into pdf

I have been pasting a small Excel table (seven rows x five columns) onto pdfs in both Acrobat 9 and X Pro.  Today, the paste won't execute.  It's actually a small graphic in Excel with text boxes that allow revision.  It's always worked until today.  Some 2013 upgrade occurred at the office today.  No one here has a clue re why the paste won't execute.  I've tried copying the same graphic from PowerPoint into the pdf; no dice. 
I've never set up the graphic as a stamp; it's a trial exhibit label that has to be a certain color and have revisable text fields.
I've checked the security of the pdfs I've created today; those settings are wide open and no different from the security settings for the pdfs in which the paste would execute.
Open to all suggestions.
Thanks.

[discussion moved to PDF Forms forum]

Similar Messages

  • Cannot Paste Excel info into PDF files

    We are an Accounting firm.
    I need to past copied information from Excel into PDF files.
    We have 35 users that use Adobe Standard 9.5.
    We have one use that uses Adobe X Standard.
    The 35 users can paste into a PDF file with no problems.
    The 1 User of Adobe X Standard cannot.
    Can someone please assist me is getting Adobe X Standard to allow a simple paste from Excel into the PDF.
    Thanks.
    Cepolly

    I don't know if this will help, but I ran into this problem myself today.  We had an upgrade, and no one could figure out why I couldn't paste my small Excel table into my pdfs, which I have done through 9 and now X Pro.
    I compared my Preferences, and the problem was there.
    In Edit/Preferences/Comments, all options should be checked in the first of three sections.  Once I checked all of those options, I could paste into the pdfs again.
    Hope this helps - actually hope you found the solution long before now.

  • Dowloading Internal table into pdf formate

    Hi,
      I want to know how to conert an internal table into pdf file  is there any fm avaliable for this  .
    regards,
    zafar

    try this sample code--
    tables:tsp01.
    TYPE-POOLS : vrm.
    DATA : vrm_val TYPE vrm_values,
           wa_vrm  LIKE LINE OF vrm_val,
           g_name  LIKE wa_vrm-text.
    data: w_pdf like table of tline.
    data:
      print_parameters like pri_params,
      valid_flag(1) type c,
      w_spono type tsp01-rqident.
      CLEAR wa_vrm.
      wa_vrm-key  = 'M'.
      wa_vrm-text = 'Mango'.
      APPEND wa_vrm TO vrm_val.
      CLEAR wa_vrm.
      wa_vrm-key  = 'P'.
      wa_vrm-text = 'Pineapple'.
      APPEND wa_vrm TO vrm_val.
      CLEAR wa_vrm.
      wa_vrm-key  = 'A'.
      wa_vrm-text = 'apple'.
      APPEND wa_vrm TO vrm_val.
    call function 'GET_PRINT_PARAMETERS'
    exporting
         no_dialog          = 'X'
         user               = sy-uname
    importing
       out_parameters       = print_parameters
       valid                = valid_flag
    exceptions
       invalid_print_params = 2
       others               = 4.
    if valid_flag = 'X' and sy-subrc = 0.
      new-page print on parameters print_parameters
                          no dialog.
    LOOP AT vrm_val into wa_vrm.             " your internal table
      WRITE :wa_vrm-key.
    ENDLOOP.
    LOOP AT vrm_val into wa_vrm.
      WRITE : wa_vrm-text.
    ENDLOOP.
    new-page print off.
    endif.
    w_spono = sy-spono.
    call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
      exporting
        src_spoolid                    = w_spono
    tables
       pdf                            = w_pdf[]
    if sy-subrc  EQ 0.
    endif.
    call function 'GUI_DOWNLOAD'
      exporting
        filename                        = 'C:\w_pdf.pdf'
       filetype                        = 'BIN'
      tables
        data_tab                        = w_pdf[]
    if sy-subrc EQ 0.
    endif.
    Sumit

  • Is it possible to import Excel pivot into PDF ?

    Is it possible to import Excel pivot into PDF ?

    HI,
    I am moving your posting at Acrobat.com forum to Acrobat forum.
    Hisami

  • How to paste a Word table into email without showing the guidelines.

    When I paste a Word table into an email using Explorer, the guidelines don't show. When I paste into an email while using Firefox, the lines show. I don't want the guidelines to show.

    BigEnd wrote:
    When pasted from Word, the graphics are Inline by default.  You can correct each one by selecting the graphic and then Anchored Object, Options and selecting Above Line (centered etc).  What I do then is create an object style to these specs and this makes it quicker to apply to the graphics.
    You say that there are very many graphics in the doc - does anyone know how to make the above settings the default when graphics are pasted from Word?
    M
    Thank you M, but I believe I figured it out:
    I made styles in Word to make things a bit simpler when changing large sections of text, so within the settings of the images style select Format>Paragraph>Line and Page Breaks. Under 'Textbox Options' the Tight wrap defaults to 'None' - Select 'All'.
    When the file is placed into InDesign, the images don't overlap, and are exactly where they need to be.

  • Download WD4J Table into PDF?

    Hi @,
    I have a table with variable rows and i need to download the data into PDf . How to convert a table into pdf using adobe interactiev f

    Hi,
    Refer to the below article for creating tables in IF.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0859ad1-53aa-2a10-78ae-99e41c407669
    Hope this helps!!
    Regards,
    Arafat

  • Copying text from excel table in PDF, pastes rectangle boxes into other programs.

    Adobe acrobat X Std.
    I have a PDF file with text, graphics and an excel table in it.
    I add comments to the PDF file and reprint it to a new PDF file.
    In the new file I cannot select text from the excel table and paste it into anything.
    When I paste into word or other programs I get rectangle boxes.
    If I go to the original PDF I the text copies just fine.
    Any ideas would be great.

    Here is a video!!
    http://www.youtube.com/watch?v=J3CJfBlZuW0
    Adobe illustrator CS3, M/S Excel 2003, HWP 2002(Korean Wordprocess),
    Macro Keyboard, script, Action ...

  • Numbers: Copy/Paste from multiple tables into 1 single Table?

    I would appreciate some guidance in creating a copy/paste script from multiple numbers tables into a different single table within the same numbers document.
    The columns in the source table are in different positions to the destination table.
    So for example, i would want to copy…
    Sheet 1, Table 1 Cell A3  copy to Sheet 2 Table Z Cell B2
    Sheet 1, Table 1 Cell B3  copy to Sheet 2 Table Z Cell C2
    Sheet 1, Table 1 Cell C3  copy to Sheet 2 Table Z Cell E2
    Sheet 1, Table 1 Cell D3  copy to Sheet 2 Table Z Cell F2
    Sheet 1, Table 1 Cell E3  copy to Sheet 2 Table Z Cell G2
    Sheet 1, Table 1 Cell G3  copy to Sheet 2 Table Z Cell I2
    Sheet 1, Table 1 Cell J3  copy to Sheet 2 Table Z Cell H2
    and repeat the copy/paste on subsequent rows of each table until there is an empty row in Sheet 1 Table 1 (or if this is difficult, say set the repeat to a max of 30 rows).
    The script would then need to move on to Sheet 1 Table 2, and do the same copying to Sheet 2 Table Z (from where the previous copy/paste finished in Table Z).
    Repeat process would finalise with Sheet 1 Table 6.
    The Paste part would need to be pasting values, as the cells in the source tables do contain some formulas.
    At the moment this is all done manually and does take some to to undertake.
    If anyone can help, i would be very grateful.
    Thanks,
    Colin

    Interceptor,
    are you trying to aggregate data from severl tables into a single table?  If so you whould be able to do this without a script.  The function indirect() will allow you to construct the proper formula, which you may fill over (in the same row) to the appropriate cells, then fill down.
    Here is a small example:
    There are three data tables ("Table 1", "Table 2", and "Table 3").  And a summary "Table Z"
    In table Z make the first row a header (as shown):
    Use column A to enter the Sheet name and colomn B to enter the table name.
    In row 1 (the header), enter the cells you want to get
    in cell C2 type (or copy and paste from here) the formula:
    =INDIRECT($A2&"::"&$B2&"::"&C$1)
    now select cell C2, copy now select cell C2 thru H2, paste
    now select the cells C2 thu H2, hover the corsor over the bottom edge of the selection, and drag the yellow cirlc down as needed to fill the formula down.
    Update the sheet and table names as needed for each row

  • Importing Excel tables into RoboHelp

    This procedure worked with RoboHelp 8.0.2, Microsoft Office 2003 and Windows XP. It should be OK for other versions and for OpenOffice but I can't test that here.
    My developer proudly gave me a list of 200 error codes as an Excel table with four columns: Number, Description, Source, Possible Solution. Top-class stuff for a service manual, but it meant 800 rounds of Tab Ctrl-C Alt-Tab Tab Ctrl-V Alt-Tab. Being naturally lazy I decided to try an easier way.
    In RoboHelp I created a simple table of 2 rows and 4 columns. I formatted the cells as Normal and looked at the HTML.
    The Table Row <tr> and Cell <td> structure is easy to see; Each row begins with
      <tr><td><p>
    Between each cell is
      </p></td><td><p>
    Each row ends with
      </p></td></tr>
    First I `cleaned' my Excel sheet; I used Replace All to replace all commas with a string "COMMA". I also replaced ampersands "&" with the html "&amp;" and then replaced greater-than ">" with "&gt;" and less-than "<" with "&lt;"
    Then I inserted columns in the spreadsheet and filled them with the HTML table structure described above. I saved the Excel sheet as a comma-delimited file CSV.
    I closed Excel and opened the CSV file with a text editor (Notepad).
    I used Replace All to remove all commas (inserted by Excel); then restored the real commas by replacing the string COMMA.
    Then I copied the entire contents of the file onto the clipboard, and pasted it into the HTML to replace my dummy rows.
    That was it! RoboHelp accepted the transplant and I could format the header rows and set column widths in the normal way.
    Dear RH and HTML gurus reading this: is my procedure safe? or will something come back to bite me later?
    --- Derek

    Our developer-provided tables are huge (up to 15 columns and 400 rows), so we've been able to have the developers create HTML files (not HTM) with similar formatting to our regular tables.
    We then set up links to those files and add them to Baggage Files. They don't become part of the search (no problem for us, since we can include them into our Zoom Search indexing process), nor do they get processed by RoboHelp (which was a big plus because RH used to choke on those tables in HTM format).
    The other plus is not having to repeat your process every time changes are made by the developers (they run their own conversion process and you plug in the replacement version of the file that they provide).
    Good luck,
    Leon

  • How do you convert 5 Excel sheet into PDF automatically

    Hi:)
    My name is Steffen Christiansen.
    I am working on developing an Excel
    template. I have a small problem.
    My template has 5 sheets
    automatically be konveteres about
    to PDF. It must be such that
    the 5 sheets must konveteres on
    to a file. Further, it should also be such
    that after I've saved and named
    excel file to pdf file
    has the same name and will be stored
    out on the desk. How do I make such a
    marcro in vba.
    Hope you can helpe
    Sincerly Steffen

    Hi
    Check out this post - Save multiple sheets to PDF
    http://stackoverflow.com/questions/14404650/save-multiple-sheets-to-pdf
    Free .NET Barcode Generator & Scanner supporting over 40 kinds of 1D & 2D symbologies.

  • I copy and paste excel tables into my yahoo email using firefox as my browser, but firefox is not preserving the cell gridlines and colors... how can I do this?

    i use yahoo for email. I often send spreadsheets inline in yahoo, and before i used firefox, the gridlines and cell colors copied into my yahoo email (inline). Now with firefiox I am losing the gridlines and colors. I looked in Firefox options but did not see an option to check for this. Please help

    You can look at:
    *Dafizilla Table2Clipboard: https://addons.mozilla.org/firefox/addon/1852

  • Copy in Hub (email password) cannot paste password I copied into a web page

    None of any seemingly pertinent subjects had any answers to assist.   I need to (as in 9810, copy anything, anywhere and paste anywhere.   Ridiculous amt of time searching thru Forum and finding nothing similar to my need.    Please, I can figure out how to paste (except in Documents) but strange I need a password link from email, copied and how can I log ito a website IF I cannot copy AND paste into site so I can login to that site.   
    Appreciate the new hub but not if I can't perform basics as in 9810. Deb

    Highlight the text you want to copy. Depending on your OS version you should get a small menu that shows options for cut/copy/paste/ select, etc. If you don't, highlight the text, and hit the more key at the bottom and select Copy.
    Then in the field you want to paste, touch and hold and you should get a pop up menu with a paste option. If you don't get the option, put the cursor in the field, hit the more button at the bottom, and then select paste.
    That said, there are some fields where copy/paste doesn't work. If you're in an HTML email and the text is actually part of a picture you won't be able to copy it.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • Split Excel tables into individual tables in Numbers

    Is there a way, having opened a file with multiple tables from excel, to make them into separate tables in Numbers. The tables have links between them and if I copy paste into a new sheet I lose the link. I no longer have access to Excel to put them all on separate Tabs. Thanks
    Reg

    Select a range of cells, press shift-command-X (mark for move), go to a cell in the new table and press shift-command-V (move).

  • I cannot paste a copied image into the body of an email

    I can attach images to an email but I cannot copy and paste them into the email itself. I have been trying to find an Insert button but have been unable to do so. My setting is html, not plain text.
    Clive.

    Holding the shift key while clicking the Write button toggles to the opposite of what your account settings are. So if your account settings are for HTML, holding the shift while opening a Write window will switch to Plain Text or vise versa.
    I am not sure what your issue with making this work is.
    Check your account settings and see what your default is set to.
    Account settings-Composition and Addressing
    Is the option to compose in HTML checked?
    Are you using an encryption add on of some kind? They force the composition to plain text.

  • Cannot paste from "print screen" into document CS4

    I have Photoshop CS4 and Windows 7 and cannot get a print screen copy to paste into a document. I have always been able to do this in the past, this is the first I have tried with CS4 and windows 7. It will paste into an email so I know the print screen button is functioning.
    Does anyone how to resolve this. Thank you.

    As per John's comment, I occasionally have this behavior on my laptop with XP-Pro and CS2. All will work fine for a dozen screen-caps, and then it ceases working. So far, I've never encountered this on my workstation. In general terms (things that might matter here), the only difference between the machines is that I have the 3 GB Switch on the workstation, but not on the laptop.
    For me, Purging everything has no effect. Closing and re-launching PS clears it up though. I have had it re-occur in the second session, but not usually.
    Both machines are very clean, regarding which programs and Processes are loaded at boot and running. What is left should not be sapping resources, but who knows? When this manifests itself, I often have PS and either PrPro, or PrElements, running, as those are often my sources for the screen-caps. In my case, maybe one, or the other, has some sort of memory leak. While editing, I have not observed such, and Task Manager does not show anything near extreme resource usage. Also, when I "cure" the issue by re-launching PS, I do not shut down the NLE programs.
    Just some observations,
    Hunt
    BTW - many users on the Premiere fora also use, and recommend, SnagIt.

Maybe you are looking for

  • Built in Audio not working in MacBook Pro after update to 10.7.3

    The Built In Audio is not working in My MacBook Pro (Early 2011) after update to 10.7.3; I tried resetting the PRAM and SMC but it didn't helped me out. I can get audio only if i reboot my mac from Safe Mode or reboot after Repairing Disk Permissions

  • Installing OS/user folder on one drive, apps on another

    I have two Velociraptor drive that are RAID striped as my startup disk. It's caused some some problems. (like Boot Camp won't work on RAIDs, Each drive shows up separately when Option key booting, etc) So I'm thinking of splitting them up into two no

  • How to modify the selection screen frame.

    <b>Friends, I need to create two separate blocks A | B. Using SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME , we can able to create the blocks one below the other. How to create two blocks side by side? And also how to fix the size for the block Exam

  • Reading attachments

    I get emails from mutiple sources on PCs to my Yahoo program but I can't read the attachments on my new iMac. How do I do this?

  • Stuck on gray apple screen since 10.4.6 update

    My G4 800MHz iMac will not get past the gray apple/spinning gear screen since updating to 10.4.6. I have tried booting into safe mode, reseting xxRAM (don't know the nomenclature), unplugging unnecessary peripherals, and power cycling, all to no avai