Help with drop down box if/then function and sum

Hi, I am hoping someone can help me with an if/then function. I have a drop down box with all of the provinces listed, then based on their choice I need to calculate provincial sales tax with a sum function for the price of the item plus the sales tax. Help!

You can enter the sales tax rate for each province as the export value and
then use the drop-down field directly in your calculations.
On Thu, Feb 5, 2015 at 6:06 PM, jennam90934439 <[email protected]>

Similar Messages

  • Qestion: my mac book shuts during my pauses while using keyboard.. first warns with drop down box (restart sleep cancel start).. if i don't hit cancel immediately it shuts down.. any help?

    Question: My computer shuts down while I am pausing briefly during use.. first display drop down box "RESTART, SLEEP, CANCEL, SHUTDOWN" warns me of shutdown coming.. If I do not hit cancel immediately, computer shuts down and I have to employ start up procedure each time.. very annoying.. I must admit that I am a novice user and suspect that there is some simple setting that I am overlooking.. however, I have gone through all the relevant settings in Apple System Preferences and cannot connect with one that solves this problem.. Any help greatly appreciated 

    I think it's time to buy a new battery

  • Can somebody help me with drop down box in STRUTS?

    Hi GURUs:
    I am doing a drop down box with Struts, and I have seen previous post on the forum regarding how to do that.
    Basically I have 2 classes
    InquiryAction and InquiryResult.jsp
    here is the code snippet from InquriyAction
    public class InquiryAction
        extends Action {
      public ActionForward execute(ActionMapping mapping,
                                   ActionForm actionForm,
                                   HttpServletRequest request,
                                   HttpServletResponse response) {
        InquiryForm form = (InquiryForm) actionForm;
        if ( request.getParameter("submitting") == null ) {
          return mapping.findForward("inquiry");
        /** @todo get parameters and do a search **/
        /** @todo put returned serviceResult or whatever into session/request **/
        ArrayList inquiryResults = new ArrayList();
        inquiryResults.add(new InquiryResultDisplayBean("005001", "00656992",
            "04/01/02", "104.15", "AD", "Name1", "Name2", "5"));
        inquiryResults.add(new InquiryResultDisplayBean("005001", "00729912",
            "04/02/22", "55.20", "GB", "Name2", "Name2", "7"));
        request.setAttribute("inquiryResults", inquiryResults);
        request.setAttribute("hasMore", new Boolean(true));
        return mapping.findForward("results");
    }and here is where I do the population of the drop down box in my JSP code
    <td class ='resultd'>
      <html:select property="PRKey"><logic:iterate id='transaction' collection='<%= request.getAttribute("inquiryResults") %>'>   
    <html : option value="<bean:write name='transaction' property='PRKey'/>" >           
         <bean:write name='transaction' property='PRKey'/>     
    </html:option>   
    </logic:iterate>
    </html:select>
    </td>                                 However when i test the JSP page on my local app server, i got the following error:
    javax.servlet.jsp.JspException: Cannot find bean under name org.apache.struts.taglib.html.BEAN
    at org.apache.struts.taglib.html.SelectTag.calculateMatchValues(SelectTag.java:301)
    at org.apache.struts.taglib.html.SelectTag.doStartTag(SelectTag.java:244)
    at jsp_servlet.__inquiryresults._jspService(__inquiryresults.java:544)
    I did bind the "inquiryResults" with an arrayList, can somebody tell me what is wrong? thanks...

    First: You can't nest tag library tags within tag library tags, unfortunately. So this:
    <html:option value="<bean:write name='transaction' property='PRKey'/>" > ...for example, is a no-go. You'd have to write it like this:
    <html:option value="<%= transaction.getPRKey() %>" > ...Second: The easiest way to do this is if the value and label properties of the InquiryResultDisplayBean objects are proper Java bean fields, meaning PRKey field has getPRKey() method. In that case, you can do this:
    <jsp:useBean id="inquiryResults" class="full.package.InquiryResultDisplayBean" scope="request" />
    <html:select property="PRKey">
    <html:options collection="inquiryResults" property="PRKey" labelProperty="PRKey"/>
    </html:select>

  • I need help with drop down lists

    I have a form that does not have lots of space and I want to use drop down lists to fill in specific information that describes site conditions.  The problem I have is that the drop down list is only set up for a single line and that is not enough space for what I want in the drop down list.  In other words, I have items that are several sentences.   I have seen some descriptions of creating a drop down list that then fills in a text box that has multiple lines.  Unfortunately, that is not an ideal solution for me.  I just want the drop down list to select a single phrase.  Here is an example of what I want to be able to select in the drop down.
    The water heater spilled flue gases in excess of 5 minutes under worst case conditions.  The combusiton testing was completed with in 30 days of the invoice submittal. 
    The form does not allow me to create a field that goes all the way across the page so it needs to look something like this:
    The water heater spilled flue gases in excess of 5 minutes
    under worst case conditions.  The combusiton testing was
    completed with in 30 days of the invoice submittal.
    Any help is greatly appriciated.

    Thanks for responding.
    I have three items that are very similar in length and text for each drop down.  There are 9 drop downs right now.  I am using the drop downs to fill in a form that is used by several people and I want to keep things as simple as possible.  Associated with the drop down already is a check box.  When the check box is checked, it fills in a text box with a score (1 point, 5 points, etc).  That score then tallys for a total with all the other scores in another text box.  Using a drop box to fill in a text box is just getting to busy and than I have to distinguish each drop down item so it is clear which text you are selecting.

  • Please help - simple drop down box

    i am very new to this - i have just opened the app for the first time - i have to create this form by tomorrow!!
    I have a simple list in access - it contains 15 fields in the table - very simple.  I need EVERY drop down box on the page to ref. this table to populate the list - which changes on a daily basis.  There will be a total of 35 drop down boxes on the form - all pointing to the exact same CHANGING list.
    PLEASE HELP!!!

    You can enter the sales tax rate for each province as the export value and
    then use the drop-down field directly in your calculations.
    On Thu, Feb 5, 2015 at 6:06 PM, jennam90934439 <[email protected]>

  • Drop Down Box Choose A Name and Have only the first name show up

    I am creating a form for health care.
    I have a drop down box with names of Physicians... their full names so they can be easily identified. And then subsequent fields that will be populated based off of the choice. However What I need is that after the full name from the drop down list is selected than only the Dr's First name shows up in the box to be distributed through out the file. All the rest of the information is already in using this Java:
    switch(this.rawValue){
        case "MD":
            form1.Page1.Physician1LastName.rawValue = " Acccc";
            form1.Page1.Physician1Number.rawValue = "1111111111";
            form1.Page1.Physician1Fax.rawValue = "2222222222";
            form1.Page1.ClientEmail.rawValue = "[email protected]";
            form1.Page1.Physician1Address.rawValue = "xyz suite ";
            form1.Page1.Physician1City.rawValue = "XYY CIth";
            form1.Page1.Physician1State.rawValue = "XZ";
            form1.Page1.Physician1Zip.rawValue = "11111";
            form1.Page1.Physician1NPI.rawValue = "111111111";
            form1.Page1.Physician1License.rawValue = "ABBB111111";
            form1.Page1.Physician1UPIN.rawValue = "A11111";
            form1.Page1.Physician1Specialization.rawValue = "Internist";
            break;
    And is working beautifully thanks for previous help everyone.
    Here is the example from the Drop Down list choices:
         Dr. Aaaaa Abb Accccc
         Dr. Baaaa Bbb Bccccc
    I would like to choose :
         Dr. Aaaaa A Aaaaa
    and upon chosing it have it show only the first name in that field so it can be processed correctly through out the rest of the fields.
    ie:    Aaaaa   (Only nothing else)
    I am a horrible at this stuff I just surf around until I find something that works and copy and paste and play until it works
    So Please be specific:
    Java vs FOrm: Client: Choice   and code ....
    Thanks SO much ....

    Take a look at the attached. The script assumes the name is a three-part string such as Dr. Frank Burns. You can modify it according to your needs.
    // form1.page1.dd::exit - (JavaScript, client)
    if (this.rawValue != null) {
      var doc = this.rawValue;
      var i = doc.indexOf(" ");
      doc = doc.substring(i+1,doc.length);
      this.rawValue = doc.substring(0,doc.indexOf(" "));
    Steve

  • Need help with drop down list in parameters

    Hi All,
    I have the following data set:
    DEPT1     DEPT2     DEPT3 DEPT4
    Commissioner's Office     Finance     Accounting     Accounts Payable
    Commissioner's Office     Finance     Accounting     Fiscal Analysis & Repo
    Commissioner's Office     Finance     Accounting     
    Commissioner's Office     Planning,Asset Mgt     Asset Management     Inventory & Tracking
    Commissioner's Office     Planning,Asset Mgt     Asset Management     Mobility & Congestion
    Commissioner's Office     Planning,Asset Mgt     Asset Management     Roadway Safety
    Commissioner's Office     Planning,Asset Mgt     Asset Management     
    Commissioner's Office     DesignProj Mgt & Tec     Bridge Dsgn Insp Hyd     
    In plus i have four parameters with searchlight options, the problem is when i select "Finance" from DEPT2 and in the next selection level i'm seeing all the departments "Accounting,Asset Management and Bridge Dsgn Insp Hyd" insted of just "Accounting". What i want is if i select a department in DEPT2, in the next drop down list(DEPT3) i want to see only the departement corresponding to the one i selected in dept2. Please need help.
    Thanks

    Hi
    First of all you need to be using Discoverer 10g or 11g Plus not 9.0.4. Assuming you have the right version you need to present the parameters in the correct order. You can change the order on the parameters screen by selecting Tools | Parameters from the toolbar. You then use the Move Up and Move Down buttons to place them in the right order so that DEPT1 is offered first, followed by DEPT2, then DEPT3 and then DEPT4.
    Next, you need to check the radion button on the bottom of the right-hand side that allows linking of parameters then you make DEPT2 dependent upon DEPT1, with DEPT3 dependent upon DEPT2 and so on.
    While this works without hierarchies it works best when you have a hierarchy in place and even better when there is a composite index on the 4 items.
    Best wishes
    Michael

  • Need help with drop down menu

    Hi guys,
    I'm using div's for the main navigation of my site and want to create a drop down for the first two buttons. All the tutorials I have seen have been for using unordered lists but I need to use divs for this navigation set (long story!).
    Can anyone help me get them set up please? Ideally I would like the drop downs to fade in but it's not essential. I take it I need to create an absolutely positioned div where I want my drop downs to appear, is that correct? - but then where do I go from there?
    If you click here for my test site.
    Thank you very much and I hope to hear from you.
    SM

    Hi Ken,
    Thank you for the reply.
    I had the main nav as an unordered list to begin with but for some reason I didn't find them as easily controllable as the div's i.e. setting widths and heights etc. as I wanted each button to have a set width, instead of just having text with padding. Originally I had the button divides set as border left and right strokes but for some reason they weren't adding up, I think because of the padding I had on them. I know you can set these with unordered lists but opted for divs in the end!
    Hope that helps.
    Thanks again,
    SM

  • Need help with Drop Down Menu _ URGENT!!

    Hello -
    I'm new to Dreamweaver. I actually have an old version
    (Dreamweaver MX 2004).
    I'm updating a website for work and this needs to be done as
    soon as possible so I'd appreciate if anyone can be so kind as to
    shed light on ANYTHING. =/
    This is what I need:
    I need a drop down menu; when a selection is chosen, I need
    information regarding that selection to appear on the bottom of the
    page. (I am working off an Excel sheet - it has list of service
    descriptions along w/ the unit price, frequency & other fields.
    So If I chose "database hosting" off the drop down list,
    information would be generated (ie. it's corresponding unit price,
    frequencies, etc.)
    I've attached an example of a code but I cannot use that code
    (which has JavaScript) to tweak what I need exactly.
    I am VERY new to this so if anybody can help be out I would
    GREATLY appreciate it.
    Thanks!!

    >I buy all their stuff as it
    > is excellent.
    Double Ditto!
    Walt
    "Paul Gillard" <[email protected]> wrote in
    message
    news:gedcoi$d65$[email protected]..
    > Hi
    > To be honest, the very best thing you can do is to get
    hold of a DW
    > extension
    > from
    http://www.projectseven.com
    and then you will be able to have a
    > completely
    > editable 'easy to implement' drop-down menu system! I
    buy all their stuff
    > as it
    > is excellent.
    >
    > Cheers
    > Paul
    >

  • Need help with Drop down cells on IPAD Numbers

    Hy everyone:
    Im new in this forum and Im not god writing, so sorry for my english.
    I have a question about using Drop down cells on Numbers in the IPAD version. In Numbers I normally can use drop down cell but some days ago i bought the IPAD and Iwork suit, and i import some numbers documents that I have done. When I tried to drop the menu of a cell I could not.
    I would like to know is their is a way to see this type of menus on IPAD Numbers.
    Thanks for the attention. And I will be grateful for your answers

    I don't think drop down selection is supported in iPad numbers. If you would like to see this functionality added, peas make a suggestion at http://www.apple.com/feedback
    Thanks
    Jason

  • Business Contact Manager 2013 Issue with drop down menus not working correctly and BCM disappearing.

    We upgraded from BCM 2007 to BCM 2013.  Now the BCM disappears from Outlook occasionally and the drop down menus are confused. for instance when accessing the drop down for phone numbers, the user selects company - but the field for TTY/TDD comes up.
    Shows fields that don't exist etc.
    The client is using Office 2013 Pro Premium from Office 365 Small Business Premium subscription and BCM downloaded from Microsoft website.
    Please let me know what the support avenues are for this product.
    Chris Smith

    Hi,
    This issue may be caused since the BCM was not installed properly.
    Please go to Control Panel -> Programs and Features, find Business Contact Manager for Microsoft Outlook and Uninstall it.
    Then go to
    http://www.microsoft.com/en-us/download/details.aspx?id=36513, download the right version of BCM(32bit or 64bit) and install it.
    If issue persists, you may provide the screenshots of the issue, post them to SkyDrive and share it via a link:https://skydrive.live.com/, then we will have a better understanding on the issue.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • The toolbar with drop-down menus such as, "File" and "History" has disappeared, how do I get it back?

    So I can't access history or anything. Above the tabs, there are the symbols with back and refresh, and the address and the search, but above that its just the blue thing. Please help!

    Hit the '''Alt''' key to show the Menu bar, then open View > Toolbars and select Menu bar, so it has a check-mark. <br />
    https://support.mozilla.com/en-US/kb/Menu%20bar%20is%20missing

  • How do I create hyperlinks in drop-down box....  (see details)

    I'm creating a form that will be used as an employee performance review.  On page one of the form, I'd like to insert a drop-down box titled "JOB TITLE" and there will be approx 10 different job titles in the list that the VP can select from.  Depending on the job title that the VP selects, I'd like a hyperlink that takes him to a new page within the pdf document.
    For example, the VP is going to complete a performance review for a "General Mgr" on his/her team.  He selects "General Mgr" from the drop down list in the "Job Title" box, and when he does, a new page opens that has questions related to the job responsibilities of a "General Mgr".  If the VP had selected a different Job Title, such as "Area Mgr", then a different page would have opened up with questions related to the job of an Area Mgr, which would be different than a Gen Mgr.
    Can anyone assist me with this?

    Hi,
    Here are some resources that you might find helpful:
    http://www.adobe.com/go/learn_lc_scriptingBasics
    http://www.adobe.com/go/learn_lc_scriptingReference
    http://www.adobe.com/go/learn_lc_formCalc
    http://www.adobe.com/devnet/livecycle/articles/Adobe_XML_Form_Object_M odel_Refer ence.pdf
    http://www.adobe.com/devnet/acrobat/pdfs/lc_migrating_acrobat_xmlform. pdf
    And a very handy resource (and while it is for version 6 it is still very good because of the way it is laid out):http://partners.adobe.com/public/developer/en/tips/CalcScripts.pdf
    The help file also helps with syntax and LC Designer comes with templates/examples.
    Lastly, check out the Developer's Network on http://www.adobe.com/devnet/livecycle/
    In the sample the script is in the exit event of the dropdown. You can view the script by selecting the dropdown, which is on the Master Page and viewing the script editor at the top of the workspace. If the script editor is not open, you can open it from the Windows menu. By default it is only one line high, so I would recommend dragging the bottom bar so that you see a good few lines. You can view different events in the script editor and set the language.
    Also if you look at the dropdown you can see in the Object > Field tab that I have set the values that are displayed in the dropdown and in the Object > Bindings I have not specified bound values, so I can use the display values in the script.
    In the hierarchy I have named each of the pages with a unique name (eg appendixAdmin), that is also used in the script.
    I hope that helps,
    Niall

  • Add SC  Status List( Drop Down)  values in SC status screen Drop Down Box

    Hi Gurus,
    My requirement is that , In SC <b>Check Status</b> screen "<i><b>Find the SC section</b></i>" we have ("Item Description"     "Name of Shopping Cart"    " Timeframe"     "Status" )fieds are there..  I need to add one values (Deleted) in to the Status Drop Down Box.
    Then If I selected this deleted values from the status which should display only Deleted SC in the Search Result section.
    Pls Help me out from this issue.
    Regards,
    Kumar S

    Hi Sivakumar,
    I found solution for you but you have to change in the standard as there are no exits for this.
    Are you interested by changing the standard?
    regards,
    Laurent.

  • Standalone Interactive Forms without ABAP Dynpro and Drop down boxes

    Friends,
    I need to create Adobe interactive form with drop down boxes. I have 2 questions:
    1) do i need to use abap dynpro to display the form or can i display the form using print program
    2) for using drop down box, should i use the one from standard library or Web Dynpro ActiveX or Web Dynpro Native library
    Points will be rewarded for helpful answers.
    Thanks.

    Hi,
    Its not necessary to have ABAP web Dynpro to create and display adobe forms. You can display it in programs in ABAP. Go to following link to know more:
    [https://www.sdn.sap.com/irj/sdn/adobe#section39]
    There is a sample application for Adobe form in ABAP and lot more.
    You can use web dynpro Native dropdown list.
    Hope it will help you.
    Regards,
    Vaibhav Tiwari.

Maybe you are looking for