How do I create a PDF that works like an Excel Spreadsheet?

How do I create a fillable PDF that can total numbers like an Excel Spreadsheet? Need to find out how A.S.A.P.!!!!

Hi,
Sorry, FormsCentral doesn't support calculation of forms fields. Vote for existing popular Ideas or submit your own using this FormsCentral form: https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
Thanks,
Wenlan

Similar Messages

  • How do you create a PDF that shows up on the opening of an e-mail

    I use to be abel to create a PDF that I could drag onto the desktop of an email and it would show up as part of the e-mail when opened as well as an attatchement. Is there an actual procedure for creating one or is it random?  Sometimes it works sometimes it doesn't?

    Yakandhurl wrote:
    I use to be abel to create a PDF that I could drag onto the desktop of an email and it would show up as part of the e-mail when opened as well as an attatchement. Is there an actual procedure for creating one or is it random?  Sometimes it works sometimes it doesn't?
    There is no procedure. Whether it shows up or not is purely dependent on the receivers email application and their preferences.
    As always, I suggest if you want to do something like that, you should create an HTML email. There's a bit more control although it isn't foolproof either.

  • How can I create a PDF that conforms to PDFX/1-a:2001 form Pages

    I have a 358 page B&W document created in PAGES - I need to submit this to the printers (Lightning Source) as a PDFX/1-a:2001. I have Adobe Acrobat Professional and Distiller. However, pdfs created by PAGES cannot be converted by Acrobat into PDFX/1-a:2001 (at least I haven't been able to figure out how to!). The solution proposed by Lightning Source is to:
    print to a Postscript file first, then process the PostScript file using Adobe Acrobat Distiller Professional Version 6 or newer.
    This allows you to produce a PDF that is of optimal compliance with our printing process (PDFX/1-a:2001 recommended)
    The problem is that when PAGES creates the Postscript file it doesn't retain the correct sizing - it shifts it from 216x140mm to Letter size (the original document shifts to the lower-left corner surrounded by blank page). This size change continues when Distiller creates the PDFX/1-a:2001 so their solution doesn't work.
    Anyone who has actually achieved this or with suggestions - all advice gratefully received!

    Peter, thank you for your suggestions - I was a bit daunted by the colorsync filters, etc., however, after much searching I've put together an apparent solution. I'll find out if it works in a few days when Lightning Source get back to me:
    Creating a Lightning Source pdf from a Pages document
    Here is a walkthrough of the process I go through to create PDF in the format Lightning Source requires for B&W inner text - PDFX/1-a:2001. You need PAGES, ACROBAT DISTILLER and ACROBAT PROFESSIONAL.
    In PRINT dialog go to the PDF button and select SAVE AS POSTSCRIPT.
    Open this Postscript file in Distiller, it should save it as PDFX/1-a:2001.
    If the page size is incorrect go to the following instructions.
    Your pdf should be ready now to go to LS.
    IF THE PAGE SIZE HAS BEEN MODIFIED
    This was my major challenge as OS X’s export to Postscript seems to modify the file to A4 or Letter size. You need the following Applescript (thanks to Gregory Ledger for this essential tool):
    http://macproductionartist.wordpress.com/2009/04/01/really-cropping-pages-in-acr obat/)
    tell application "Adobe Acrobat Pro"
tell active doc
repeat with i from 1 to count of pages
tell page i
set cbox to crop box
set media box to cbox
end tell
end repeat
end tell
end tell
    With your new pdf opened in Acrobat Professional use the DOCUMENT: CROP PAGES dialog box.
    Set the margins of the Crop Box to the required dimensions.
    Keep the pdf open in Acrobat Pro.
    Now run the APPLESCRIPT above - this modifies the pdf so that the page size is modified to match the new crop size.
    Save your pdf and this should now be ready for use at LS.
    Gregory Ledger also recommends exporting the cropped pdf to Postscript and then running this through Distiller again to ensure any artefacts are removed.
    Thanks again for your time and suggestions, Richard

  • How do I create a title, that behaves like a button?

    Hi,
    I'm using XML to load data from asp to flash. Here's the XML
    example:
    1. <?xml version="1.0" encoding="iso-8859-1"?>
    2. <news>
    3. <item>
    4. <headline>Flash XML Based News reader out
    today!</headline>
    5. <date>05/09/1986</date>
    6. <message>Today my new xml based flash news reader
    came out, I am so excited!</message>
    7. </item>
    8. <item>
    9. <headline>One day until the Flash XML Based News
    reader is out!</headline>
    10. <date>05/08/1986</date>
    11. <message>Tomorrow my new xml based flash news
    reader comes out, I am so excited!</message>
    12. </item>
    13. <item>
    14. <headline>Two days until the Flash XML Based News
    reader is out!</headline>
    15. <date>05/07/1986</date>
    16. <message>The day after tomorrow my new xml based
    flash news reader comes out, I am so excited!</message>
    17. </item>
    18. </news>
    And here's the ActionScript part:
    1. // Initialize the xml object that our news will be loaded
    into
    2. var news_xml : XML = new XML();
    3. // ignore all whitespaces inside of our xml file
    4. news_xml.ignoreWhite = true;
    5. // when the xml recieves a return from the load() function
    call, execute this function
    6. news_xml.onLoad = function( success : Boolean ) {
    7. // if the xml file was successfully loaded
    8. if ( success ) {
    9. parseNews(this);
    10. }
    11. }
    12. // call the load function on the xml object, passing in
    the url of your xml file
    13. news_xml.load("xmlTutorial.xml");
    14. // this function will take our news xml object and parse
    it
    15. function parseNews( _xml : XML ) : Void {
    16. // first we create an array that holds all the values of
    the item nodes
    17. var items : Array = _xml.firstChild.childNodes;
    18. // now we want to iterate over every item in the items
    array
    19. // and parse the nodes as we see fit
    20. for ( var i : Number = 0 ; i < items.length ; i ++ ) {
    21. // here we set the text of the text field ( news_txt )
    22. // the first thing we add to the textfield is the
    headline then a line break
    23. news_txt.htmlText += "<b>" + items
    .childNodes[0].firstChild +"</b><br>";
    24. // next we add the string date followed by the date value
    in the xml file
    25. news_txt.htmlText += "Date: " +
    items.childNodes[1].firstChild + "<br>";
    26. // now we add the message, then two line breaks, only for
    formatting
    27. news_txt.htmlText += " " + items
    .childNodes[2].firstChild + "<br><br>";
    28. }
    29. }
    So far is everything clear to me. But what I want to do now
    is that after a user clicks on title, next happens:
    the current swf unloads
    the flash sends data to asp (ID of an article and ID of an
    author, which movie to load next).
    How do create a title/button?I know how to make a title to
    behave like a link (just add the
    http://... in the headline tag in XML
    document. But this,..... I just don't know how to do that.
    THX for any help

    2m, you are right. I should tell you about my concept. It's
    all on the paper yet, because this is how I work - first I write
    down everything on paper, study it and the next step in trying to
    make it work on computer.
    I have a main swf, I call it system.swf. System.swf receives
    the info about the swfs, it must be loaded from html tag
    <object><param>. The ID of the movies is send from
    flash to asp and then via <object>back to flash. Does that
    make sense? Is there a better way for that?
    So, the system.swf is loaded for the whole time - let's say
    it on level1. On level 2 are then loaded other swfs.It depends
    which content the user wants to see.
    About the article part:
    first the user sees the list of last articles (title, date
    and short description). When he/she clicks on the title, all the
    action happens:
    flash sends the data which article the user wants to read to
    asp, asp searches in data base for the requested article and
    creates xml, where are title, date and the whole content of the
    article.
    At the same time asp also sends via <object>tag in html
    the id of the swf that must be loaded and the id of the author of
    the article, so the swf, where the pictures of the all authors are,
    will know what picute must load (this is the second swf that is
    loaded on the article part - it's created like a gallery; the
    author of the active article is bigger and if the user wants to
    read the last article of other author, he/she just closes the
    picture and then the images are moving in a slider way and when
    he/she clicks on an image, it get larger and the last artcle of
    this author is loaded).
    And I wonder how can I make this all to happen: when the user
    clicks on a title, all the var action happens?
    If you have better idea how to create this, please, advice.
    THX for the help so far

  • How can I create a pdf that displays three pages in a one page pdf?

    I wasn't sure where to post this question since it involves different products, but maybe someone here has a solution...
    I design three-panel product displays and it sure would be nice if I could present them in a pdf (I use Acrobat Pro 9) that shows all three panels side-by-side in a single page. I've been using ID CS4 for the individual panel layouts for the vendor then making a pdf for client review, with each panel on a separate page, however more than one client has requested a three-up electronic presentation. I could create all three as one page in ID then export to pdf, yet that seems kind of redundant and I'm trying to streamline this process as much as possible. Any ideas?

    sureicandothat.com wrote:
     I could create all three as one page in ID then export to pdf, yet that seems kind of redundant and I'm trying to streamline this process as much as possible. Any ideas?
    I do that a lot. It's the easiest way that I know of. Just create a new page that will fit all threee panels, use File>Place to place the panels, export as a PDF.

  • How can I create a button that looks like this?

    Hey everyone,
    I'm trying to create a button in photoshop for a web project I'm working on and I found something similar to what I'm trying to do already being used online. I'm trying to get something similar to the bottom row of buttons in this image:
    The bottom row of buttons uses a gradient overlay effect... but there is a small darker area in the top left corner of each of those images. It looks to be exactly the same in each image... meaning I'm guessing it's not hand drawn with something like the burn tool?
    How would I go about doing something similar? What's the easiest way to reproduce the effect shown above keeping it consistant from button to button?

    One way is using layers.
    Color layer on the botton so changing colors simply change color layer.
    Place all your image effects on the overlying layers.

  • How do I create a rule that scales like this?

    Hello,
    I'm creating a page where I want a solid white horizontal rule. 4 pixels high, fixed distance from the top of the page, fixed distance from the left, and always attached to the right edge of the screen. Something like this:
    Is this possible? Thanks.

    Insert a horizontal rule styled with the following CSS:
    hr {
    color: #fff;
    background-color:#fff;
    margin-top: 40px;
    margin-left: 80px;
    height: 4px;
    width: 100%;

  • Creating a PDF that has editable fields and replaceable images

    I've been trying to figure out how I can create a PDF that has editable texts and replaceable images. I'm working for a company in which all computers only have Adobe Reader as means to view or edit a PDF file. So far I have managed to create a file that has editable text fields with customized appearance, which is great! The next step however was to create 'fields' that can be filled by an image. Is there a way to create replaceable images with LiveCycle or any other prorgram for that matter.
    My goal is simple: Create a PDF that has editable textfields and replaceable images. All of which should be done in Adobe Reader.
    I'm using Adobe Acrobat X Pro to create this file and I'm wondering if Live Cycle can help me with this problem, or if this is even possible to begin with. Thanks in advance.

    Your goal is very simple with the LCD. You are have to use only an Image Field (important no Image) from the object library.
    Any time you can click on it and select a new picture.
    Hope this information is helpful?
    Kind regards Mandy
    PS: Oh I opened this tab and there are no answers at this time

  • How do I create a pdf file that is 300 dpi in Adobe Acrobat XI?

    How do I create a pdf file that is 300 dpi in Adobe Acrobat XI?

    PDF files do not have a "resolution" - they aren't images. The pages are a mix of vector art and text, and raster (pixel-based) graphics. The raster items on a page can (and often do) have different resolutions.

  • How do I  create a pdf file that is only part of an existing pdf file??

    How do I  create a pdf file that is only part of an existing pdf file??

    Use Adobe Acrobat. ExportPDF does not do this, or claim to do this.

  • Creating a PDF that is customizable/interactive for different companies and representatives

    I am rather new to Adobe, however I am able to use most of the software (illustrator, indesign, Photoshop, LiveCycle)  just fine.
    My issue is I am not sure which program/technique I should use for an interactive PDF I need to create.
    I am trying to create a PDF document that will be around 50 pages.  This document I will distribute to representatives in my company who work for many different financial institutions.  I somehow want to create this PDF for them to be able to customize by inserting their financial institution's logo and date to the footer and insert their name to title page (and any other applicable pages).
    If possible, I was hoping there was a way to include a page where our representatives could select from a checklist which of the 50 pages of the PDF they wanted to include in their document.  The representatives also are not that tech savvy and think just telling them to delete the pages from the PDF could cause potential problems.  Also a checklist would be simple and look much more professional. 
    The representatives would not have access to any Adobe design software, so the final document would have to be some sort of interactive/customizable PDF through Acrobat. 
    I am kind of lost as to how I can create this PDF and so if anyone can point me in the right direction I would greatly appreciate it!  It's also possible I may be in the wrong program forum.  So apologize if I am.
    Thanks!

    This can be done using Adobe Acrobat yes.
    You need to decide how many uses this item will get. The reason is you have to specially enable the forms so that the users can use Reader to save the changes afterwards. These enabled files have use restrictions. You can send them to 500 people and they can use them as many times as they want or you can send them to as many people as you want but can only collect the item back 500 times.

  • Creating a .pdf that someone can sign digitally

    Where I work we FAX out hundreds of drawings per year for customers to sign.  These are 8.5" x 11" documents usually between one and five pages.  Is there anyway to create a .pdf that that has some kind of signature line or signature button that the customer can click to indicate approval of the drawing?  This would alleviate the need for both the original FAX and for the customer's return FAX.  I know how to create the .pdf but don't know how to put in a signature option.
    We are using Adobe CS3.  We also have Adobe Acrobat 9 and LiveCycle Designer ES2.
    Thank you.

    With Acrobat 8 (Pro or 3D) or Acrobat 9 (Standard, Pro, Pro Extended) you can "Reader enable" a PDF.
    One thing this provides is that users of Adobe Reader (back to, I think, Reader 7.(something)) can use the Comments & Markup tools.
    So, you send me this PDF of a drawing. It is "Reader enabled".
    I use Adobe Reader (knowing "good tools" is "good business", I'm using Reader 9 - fully updated <g>).
    I open the PDF. I add a "Sticky Note", maybe add some text, and use the Options drop-down to go to Set Status > Review > Accepted.
    Maybe I get fancy and go into the Sticky Note Properties to change the "appearance" from the default "Comments" to one of the other icons available.
    You get the annotated PDFs back. Perhaps an individual PDF has more than one annotation.
    Open the Comments List. Looking over the Tool bar for this you will see that you can show/hide/sort and output PDF reports.
    Of course, a small learning curve is involved.
    Pay off is that the turnips go to market via a truck versus a horse drawn cart (fax).  8^)
    Be well...

  • Creating a pdf that contains forms

    I am trying to create a pdf that combines three pdfs and several forms that I created in LiveCycle Designer ES 8.2. I have enabled using Reader to complete the forms so that they can be saved once completed.
    My problem is that when I try to combine file in Adobe Acrobat 9 Pro Extended, it won't let me add the forms because they are Adobe XMS forms.
    I did not intend to save the forms as XML forms, so I'm wondering how to save the forms so that they can be combined into one pdf.
    I tried the portfolio option, but feel that this format will be confusing to the people who need to use the packet.

    I actually found a workaround, although it doesn't save a lot of work...
    I opened the form I created in Designer in Acrobat, and then I printed it to a file. That generated a post-script file, which I ran through the Distiller to create a new pdf that is unaffected by the XML problem.
    Yes, I had to re-enter my fields, but at least I didn't lose all of the work - and formatting - I did in Designer.
    Cindy

  • How do I create a pdf from just one or two pages of an existing pdf?

    I just purchased this product (acrobat online)
    and it is not allowing me to do the things it promised, e.g. saving portions of one pdf to another, combining pages or entire docuements to create, even typing into a document (editing)! I am so frustrated - can someone please help!?

    But I jut paid $89.00 for the adobe pack - if I subscribe to Acrobat Plus, will that be credited?
    Date: Thu, 19 Sep 2013 15:50:14 -0700
    From: [email protected]
    To: [email protected]
    Subject: Files.Acrobat.com How do I create a pdf from just one or two pages of an existing pdf?
        Re: How do I create a pdf from just one or two pages of an existing pdf?
        created by H.Spector in Files.Acrobat.com - View the full discussion
    Hi,
    Thank you for your subscription.  If you are Acrobat Plus subscriber then you can extract the pages from the PDF file using Tools> Pages> Extract pages.
    You can find "Tools" at right top once you open your PDF file in Acroat.
    If you are subscriber to PDF Pack then please download Acrobat XI Plus from www.adobe.com.
    PDF Pack service offers "Convert to PDF", "Export from PDF"(to Word/PowerPoint/Excel/RTF formats so that you can edit the exported files) and "Combine Files" (combine your files into a single PDF file).
    Please let me know if you have any quesitons.
    thank you.
    hisami
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5697921#5697921
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5697921#5697921
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5697921#5697921. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Files.Acrobat.com by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?

    How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?
    I currently run OS X 10.10.1
    Now i have been trying to work on this for a while now and what i want to do should be simple but its apparently not.
    Here is an example of what i want to happen.
    I will have 2 tabs: Contact | Sales
    Now Contacts will have the list of names and various information about a customer, While Sales will have one drop-down box for each Cell Row that will show the names of the person in tab contacts
    for what i am wanting to do i cant use the data format pop-up menu because the list is edited everyday several times a day.
    Now how do i do this, Excel can do this so how can numbers do it?

    Hi Shegra,
    Paste this into a applescript editor window and run it from there. In the script you may need to adjust the four properties to agree with your spreadsheet. Let me know if you have any questions.
    quinn
    Script starts:
    -- This script converts column A in one table into an alphabetized list of popups. It copies the last cell in that column. Then reverts the column to text. It then refreshes popups in column A of a data table starting with a user defined row.
    property DataEntrySheet : "Sheet 1" --name of sheet with popups to be refreshed
    property DataEntryTable : "Sales" --name of table with popups to be refreshed
    set copyRange to {}
    property PopValueSheet : "Sheet 1" --name of sheet with popup values table
    property PopValueTable : "Contacts" --name of table with popup values
    set PopStartRow to {}
    tell application "Numbers"
      set d to front document
      set ps to d's sheet PopValueSheet
      set pt to ps's table PopValueTable
      set s to d's sheet DataEntrySheet
      set t to s's table DataEntryTable
      set tf to t's filtered --this records filter setting on data Entry Table
      display dialog "Start from row #..." default answer "" with icon 1 -- with icon file "Path:to:my.icon.icns" --a Week # row
      set PopStartRow to {text returned of result}
      tell pt --convert list to alphabetized popups
      set ptRows to count rows
      set copyRange to ("A2:" & name of cell ptRows of column "A")
      set selection range to range copyRange
      set selection range's format to text
      sort by column 1 direction ascending
      set selection range's format to pop up menu
      -- popupsmade
      set selection range to cell ptRows of column 1 of pt
      set v to value of cell ptRows of pt
      end tell
      activate application "Numbers"
      tell application "System Events" to keystroke "c" using command down
      tell pt
      set selection range to range copyRange
      set selection range's format to text
      end tell
      tell t
      set filtered to false
      set tRows to count rows
      set pasteRange to ((name of cell PopStartRow of column "A") & ":" & (name of cell tRows of column "A"))
      set selection range to range pasteRange
      tell application "System Events" to keystroke "v" using command down
      set filtered to tf
      end tell
    end tell

Maybe you are looking for