PDF Calculations - Setting a Static Price

Version: Adobe Acrobat X
OS:  10.8.3
I am trying to construct a interactive PDF. This is the 2nd one I've ever made so I apologize for the dumb'ness of this question.
But I have a list down the center of the file listing the price of everything offered. Ill use round numbers for my example
500
400
350
350
200
etc
Basiclly there is a box next to each price where they can enter their QTY and I am trying to have it so the TOTAL adds it all up.
What I have done thus far is named all the boxes QTY down the list and made 2 rows hidden behind the price.
The fist row is set to Price. And this is where I get into my first question.What is the right way to set that cell to be = $500.00 I am putting 500 in both the Options Tab in properties as the default value and also putting it in the calculations tab under custom calculations script.
In my second column I have the multiplication set up Price (x) QTY
Now whats weird is in the first row. It works fine. And the total shows up If I put 2 in the QTY box it =1000 and in the total box 1000 shows up
When I go to the 2nd box I hit 2 and I get like 16,000 and it goes nuts. Not sure where its getting those numbers from. I checked the cells tha tthe calculations are pointing to and they are correct. I meesed with the calculation order and that didnt do anything.
Any help would be appreciated. 
One more thing! I have the total box linked to all the cells where the product (x) calculations are being made.
Thank You!

Here is a picture of the form as the user will see it.
Basically the boxes next to the price is where you add 1-2-3-4 etc for the QTY and in the total box at the bottom it adds them all up.
Here is the box in edit mode .      Text 193-194-195 is the set price box. I am not sure if I did this correctly. I have in options and in calculations both set to the price.
Text219-220-221 set as the math portion.   Example:  QtY12(x)Text194 
My total at the bottom is set to the Sum of all the Text219-220-221 etc
The only row that works is the first one. All the rows under that dont even register properly. I add 2 to the QTY and I get like 16,000. I erase it and it goes to 32,000. I have to manually go in and reset them all back to zero.

Similar Messages

  • Can I  use excel type functions embedded into an online pdf form, ie Qty x Price= total $

    Can I use excel type functions embedded into an online pdf form, ie Qty x Price= total $

    Let me tell you what I am sure about and what I am not sure about:
    I am sure that I want to be able to sell my products online. The industrial market that I sell to usually do not allow the maintenance people that find me on the web, do not have the ability to use credit cards in a typical shopping cart format due to the higher prices that the equipment I sell costs and that most people call me up to 'request a formal quotation' to give to their purchasing depart. So, my bright idea is to create numerous pdf files with very specific url's to match the very specific items that I sell. (1) item per pdf. I am thinking that the advantage to skipping the shopping cart approach and allowing the customer to fill in the qty of items, which would be mulitpled by the price of the item (a constant #) and then hitting a apply button, that would calculate subtotal price. Discounts for the qty the customer inputs (qty of items inputted by customer would be discounted on a percentage x base price) and a refresh the screen. It would allow for SEO advantages from what I have seen in the past in my very vertical market. All forms would be setup using the same functionality, just images, alt text, urls, and readable text would change.
    What I don't know- which is alot, then how to calculate shipping costs. I have a weight per item, which can be added up. I saw an Adobe blog that allows UPS shipping cost to be programmed in. I don't know how dreamweaver works, which was what the blog mentioned would allow for this updated, instantanious interface with UPS and calculating real shipping costs to a specific zip code. Shipping cost would be fluff to this page. The main thing would be to do allow the customer to be able to fill in a qty of the specific item on the page, calculate a discount if / then type thing, be able to have customer email to purchasing dept or print. I would date stamp it with verbage that pricing is valid for XX days and if I could get a copy emailed to me that would be icing on the cake. I believe that this non static pdf would be something different then the current competion and that it would allow for 100's of quotes to be generated without customers having to wait 15 minutes to an hour for me to process the exact document that they are looking for.
    Hajeks

  • Set up std. price for proc.type F parts (External Procurement)

    Experts,
    what is the comon way to set up Std. price for materials with Proc.Type F (External procurement). Current I am using KKPAN and set cost out of PIR and material burden as seperate line.
    Looking for a way to have the material burden as fixed value in the system which I can use as base for calculation.
    Thanks in advance
    Jörg

    Dear ,
    For any FG material you should have Standard Price (S)  in Cost2 view  getting updated thrugh CK24 after ck11n done during production process .
    For any Externally procured item , you should have MAP or Planned price with Valdidty .Generally duing planned cost estimaiton , planned price will be considered  while you will do good issue agianst production order , systm will consider  the MAP to calcualte the cost of the material .
    Now to update the price you should carry out MR21 with new price for company code , validdity date , price control indicator  and valution variant .
    Generally in project scinario , you can use MAP for FG material .
    refer :
    http://help.sap.com/saphelp_47x200/helpdata/en/47/60ff6249f011d1894c0000e829fbbd/content.htm
    http://www.sap-img.com/materials/price-control-v-or-s-in-material-type.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/47/60ff0749f011d1894c0000e829fbbd/content.htm
    Regards
    JH

  • How to set and static ip_address for a Suse Linux box

    Hi.
    I've done the following to set an static ip address for my Suse 9 Linux box:
    - Take not of inet address value from ifconfig command. ie: (172.17.2.14)
    - Change this value in /etc/hosts for my linux box.
    Since Suse is configure by default to use DHCP for assigning dinamic ip_addresses i'm not sure whether will lastly be set as a static address. I've rebooted my box and it seems to be OK.
    Thanks in advance ...!

    /etc/hosts is not configuration file for ethernet interfaces.
    Configuration files for ethernet interfaces are stored in /etc/sysconfig/network directory.
    For example if you have eth0 device then configuretion for this device is stored in /etc/sysconfig/network/ifcfg-eth0 file.
    Important directives:
    DEVICE - interface (eth0)
    IPADDR - IP address of interface
    NETMASK - netmask
    BOOTPROTO - "static" for static configuration, dhcp for dynamic configuration via dhcp
    ONBOOT - activating interface during boot (yes/no) (yes - of course :-) )
    GATEWAY - default gateway
    So for example you want setup static IP (192.168.10.1 / 255.255.225.0) for eth0 interface.
    Edit the /etc/sysconfig/network/ifcfg-eth0 file and your configuration should be:
    DEVICE=eth0
    IPADDR=192.168.10.1
    NETMASK=255.255.255.0
    BOOTPROTO=static
    ONBOOT=yesThen you simply restart the nework using:
    /etc/init.d/network restartOR
    /sbin/ifdown eth0
    /sbinf/ifup eth0 OR
    ifconfig eth0 down
    ifconfig eth0 up

  • Problems setting up static routing

    HI
    I'm having a problem setting up static routing.  I keep getting the message "invalid static route".   I have an E1550 router and my frimware is up to date.  I have tried a few different gateway addresses ie 192.168.1.1,  127.0.0.1 and my router's address on the net, but I keep getting the same message.  Has anyone else had this problem and been able to fix it?

    I think the E1550 router supports LAN to LAN routing provided that you have two local networks. If you only have a plain modem and the E1550, I believe you can't do Static routing on that type of setup. Found this link that might help: http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=12a84336a124498eb5d6f0204b85191e_17589.xml&pid=80&...

  • Button in Bex Analyser 7.0 - problem with setting up Static Parameters

    Hello,
    I know a similar problem has been discussed here already, but I am still having problems with setting up Static Parameters of my Button in BEx Analyser 7.0, so that I can pass Variable values from that button to my query.
    This is what I do - in Static Parameters of my Button I set the following values:
    Name                          Index          Value
    DATA_PROVIDER        0               DP_1
    CMD                             0               PROCESS_VARIABLES
    SUBCMD                      0               VAR_SUBMIT
    VAR_NAME                 0               0RMA_FIP
    VAR_VALUE               0               004/2010
    As a result, I would like the value 004/2010 to be passed to variable 0RMA_FIP (which is mandatory) and the query to be executed with that value. For some reason, however, the value is not passed correctly, and instead the variable is filled with a blank or not filled at all, and I am getting a message "Specifiy value for variable Fiscal year/period". What do I do wrong?
    Just to give you a broader picture - I would like to later use this logic to pass more than one variables into a query, including a hierarchy node, and read the values from an Excel worksheet - however, after many attempts to do so, I started playing with just one variable to figure out what the problem was.
    I have already seen the following two threads and SAP notes on passing variable values from the button:
    Re: Button in BEx Analyzer 7.0
    Re: How to set variables values via VBA.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0881371-78a1-2910-f0b8-af3e184929be?quicklink=index&overridelayout=true
    Can anyone please advise?
    Cheers,
    AL

    I managed to figure it out myself!
    Instead of VAR_VALUE I need to enter VAR_VALUE_EXT, and it works fine.
    I will mark this thread as "answered".

  • How to set a static IP address for deskjet 6940dt

    I have two HP laptops, both have WIN7, that keep losing the IP address for my 6940dt printer, each time power goes out to router.  I have an desktop PC connected to a NetGear router and RCA modem connected to Comcast cable internet.  I also have another desktop that connects wirelessly through the router....but this desktop never loses the printer IP address and I can't figure out why it doesn't and my laptops do. 
    I have had a fellow at the senior center computer club tell me that I need to set a Static IP address to make the laptops connect .  I don't know how to do this and I would need someone to explain it in a language that I can understand, like real basic.  I have searched the internet but the things I have found have been very complicated to understand. 
    Can anyone help me?
    This question was solved.
    View Solution.

    Ooops, sorry, I forgot that yours is a wired-only network printer.
    You are on the right track - just go to where you were and follow my directions - it all works the same with wired as it does wireless.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Acrobat 9 HTML to PDF conversion sets all checkboxes to checked - Duplicate question

    I am converting html files to pdf using Acrobat 9 pro. All of the check boxes and radio buttons come out checked.
    This is exactly the same as the following thread:
    Acrobat 9 HTML to PDF conversion sets all checkboxes to checked?
    That thread is old, but not answered. Has there been any update to this?

    Hi Don,
    Have you tried updating to v 9.5.5 and checked.
    Which OS and browser are you using?
    Have you checked the behavior with a new sample form on the browser?
    Regards,
    Rave

  • How do I share a custom PDF export setting?

    I have a PDF export setting that I use for a specific printer in my shop and I want to provide it to a customer.
    I'm on a Mac running Maverick (OSX 10.9.4)
    Where does the setting file live and how does my customer install it?
    thanks

    Hi pdndesign,
    Check the location: Hard Drive > Library > Application Support > Adobe > Adobe PDF > Settings
    Regards,
    Rave

  • What is setting required for Price Contol do the optional entery in master.

    Hi SAP EXPERT,
    What is setting required for Price Contol do the optional entery in Material master ?
    Regards
    Mahendra
    Edited by: MAHENDRA  NAVALE on Aug 27, 2011 2:23 PM

    HI
    In general in the material master record you can, hide display or optional for a field, but there are certain feilds should be mandatory for material creation,like base unit of measure,material description,and price contro,l valuation price,valuation class,without this you cannot create a purchase order.
    If you dont want to the price control means go for mateial type  non valuated material NLAG. because the price control is mainly linked with the material  valuation. based on the the price control  the price difference will post either sock account or price difference account.
    Goto>MM>LOGISTICS GENERAL>MATERIAL MASTER>FEILD SELECTION >ASSIGN FEILD SELECTION TO FEILD SELECTIN GROUPS(OMSR) >CHECK YOUR FEILD REFERENCE FOR PRICE CONTROL (MBEW-VPRSV) FEILD REFERNCE GROUP IS 32* > AND GOTO MAINTAIN FEILD REFERENCE FOR DATA SCREENS (OMS9) >ENTER  YOUR FEILD SELECTIN GROUP 32 (PRICE CONTROL )AND  CHOOSE MM01 MAKE IT FROM REQUIRED  TO OPTIONAL.
    Thanks
    Edited by: Nijamudeen**MM on Aug 29, 2011 10:19 AM

  • PDF Security Setting in Crystal report

    Hi All,
    I would like to ask, is there anyway for us to change the PDF security setting that created by crystal report?  We ussualy see the security setting in PDF documents settintg.
    Thanks!
    Nico

    You would need to program that step yourself or use a 3rd-party Report Managers listed at http://www.kenhamady.com/bookmarks.html (I know at least one of them provides that functionality).

  • Setting up Static IP addresses

    In the FAQ entry for setting up static IP addresses, it says to set the "Preferred DNS server" to: 192.168.1.1
    Currently, mine is set to: 68.94.156.1
    with an Alternate DNS Server of: 68.94.157.1
    Now, I'm wondering, does the Prefered DNS [i]have[/i] to be 192.168.1.1 or will what I currently have work just as well? Also, am I supposed to have an Alternate DNS server, and if so, is what I currently have it set to fine? Lastly, do the DNS servers have to be different for each computer?
    Any help would be great. I'm hoping to try and re-setup my router tonight.

    Kind of off topic, but don't want to make a whole new thread...
    Currently, my home network is very messed up. Previously, we would lose connections upwards of 4 times a day.
    At first, we thought it was because our modem was getting old. So my dad bought a new modem. But when he finished hooking up the modem, we still couldn't connect to the net, so he plugged his comp directly into the modem instead.
    Now, in an attempt to get things working, I have reconnected the router, modem and computers to eachother. However, there is a problem. I can't access the router's setup page from my computer anymore. The lights on the router and modem indicate that:
    1. The modem is connected the net.
    2. The router is connected to the modem.
    3. 3 devices are plugged into the router.
    Now, I have two wired comps, 1 x-box and a wirless comp. and I am using the WRT54G router. I don't understand why this computer cannot connect to the router. I know it is just this comp, because the wireless one can access the router's setup page, although it still can't connect to the net.
    Could someone give me an idea as to what the problem is? The only thing I can think of is, maybe instead of running a cable from the router to the computer, I ran it from the printer to the computer (they are right next to eachother). But don't think printers even use ethernet cables.

  • Acrobat Distiller Adobe PDF default setting changes mysteriously

    I am using Adobe Acrobat 6.0 Professional on a Windows XP PC. On numerous occasions, my Acrobat Distiller Adobe PDF default setting changes mysteriously from "High Quality" to "PDFX1a". I do not know what is causing the default setting to change automatically. Would you know some possible causes? Thanks for your help.

    Hi Led2,
    Have you tried repairing the Acrobat installation and checked?
    I would also recommend updating to version 9.5.5 and check.
    Regards,
    Ravi

  • Regarding Static Price Allocation

    Hi All
    Thanks in Advance
    Can any one please tell me what in " Static Price Allocation " & how it is executed in R/3?
    Its Very Urgent
    Thanks & Regards
    Natash Singh

    Heard of Dynamic Price Changes, but not Static Price Allocation...
    Can you provide the context please?
    Cheers.

  • ADOBE PDF printer setting with joboptions?

    Hi all,
    I have adobe pdf printer installed in my win7 pc and I know I can edit the settings manually but is there any way I can use my existing joboptions file?
    Thanks in advance.
      Arjun

    hi anubha,
    thanks again but i know this distiller settings and setting up watch
    folders and i have more than 5 watch folders with different joboptions
    settings.
    what i need is to use one particular joboption file to use in adobe pdf
    printer. presently i set all the parameters in adobe pdf printer setting
    but wonder if a joboption file can be used to set the adobe pdf printer.
    On Mon, Mar 30, 2015 at 11:39 AM, Anubha Goel <[email protected]>

Maybe you are looking for

  • Source structure of XML file as different from Message type?

    Hi, We are picking an xml file from the FTP server of the client. We have source message type 'MT_Invoice' with data type as 'DT_Invoice'. When we open the message mapping test tab, the source structure is as shown below. <ns0:MT_Invoice xmlns:ns0="u

  • Data getting owerwritten

    I have a very unusual question. I am accessing my ATmel device from Lab View through USB. Its bulk in format. I am using The VISA open,Read, Close blocks properly as specified in the example provided by NI. I receive 100 packets each of 960 bytes.I a

  • Empty paragrpahs in a textflow cause runtime error when displaying the text

    Hello there, when I create a textflow which has empty ParagraphElements in it (i.e. a ParagraphElement without any children) I get this runtime error once I try to display the text in a container: Error: Error #2175: One or more elements of the conte

  • Print and Export failing

    When I click either the Print or Mail links in Reports in SSM 7.0 SP8 the PDF is not being created. Either we get an error dialogue box pop up  saying: 'There was an error on this page. An internal programming error may keep this page from displaying

  • Disc stuck in cd drive

    I didn't know the small dvds I use for my camcorder wouldn't work in the cd drive and foolishly tried to insert one in. What was I thinking....? Now of course I can't get it out. The closest Apple store is two hours away, but is that my only option f