Calculating in Forms

I have been working on an interactive flyer for days now.
Basically someone fills out the forms with packages they want for their apartment, with every selection of a check box or radio button it adds up at the bottom of the list.
I have the following;
Packages - DISPLAYS TOTALS FROM PACKAGES
Additions- DISPLAYS TOTALS FROM ADDITIONS
Housewares- DISPLAYS TOTALS FROM HOUSEWARES
Subtotal- DISPLAYS TOTAL FROM Packages, additions and housewares.
WAIVER- This is a 12% waiver to be ADDED to the rent price. This is: (.12)(Subtotal)
Monthly Base Rent- Waiver+Subtotal
The problem I am having is that I cannot get the total to show as the Waiver and Subtotal.
When someone makes a selection it shows in the total for THAT section but then it does not calculate the waiver, subtotal, and total.
When it is deselected, it shows the waiver, subtotal and total but NOT the total for that section.
I am just trying to get all the calculations to display at the same time.
HELP!

Make sure your field calculation order is correct (Forms - Edit Form - Edit field calculation order).
The total should appear last in the list.

Similar Messages

  • Calculation in Form 16

    hi all,
    in my form 16 there is a notice pay amount which are displaying correctly, but its not getting deducted in calculation. can anyone please tell me that how would i include it for calculation?
    regards saurabh.

    Guyz,
    I belive you must have clarity which Form-16 Values you talking about.
    There are two places Form -16 will come
    1 Payslip
    2 Form 16 (Just form)
    In payslip after pay and deduction components one summary will come in the boxes As Evani said.
    There is another form16 where you are getting problem
    Warm Regards

  • Multiplication calculation in form

    I wish to have a form field return a calculation that is a multiplication of another form field.
    Example:
    Field name where calculation is to take place = FieldG
    Field name where base numeric is = FieldF
    Field G needs to return a calculation that is 3 times the amount showing in Field F
    What is the best way to accomplish this?
    I have tried  this in the properties simplified field notations                       FieldG=(FieldF*3)     no result
    Suggestions?

    Here is a link to a tutorial that should be helpful:
    http://acrobatusers.com/tutorials/how-to-do-not-so-simple-form-calculations
    In short, the simplified field notation option is for simple calculations involving addition, subtraction, multiplication, and division. For anything more complicated, you'll need to use a custom JavaScript.

  • How to Pick fields for calculations in forms?

    I have all the fields in place, with all apparent formatting required for each. Using Properties > Calculate > Pick, Adobe will show me the list of all of my fields, but will not let me populate them in the Pick field individually. I can Select All and Deselect All, but choosing individual fields is totally hit or miss (~95% miss), with no apparent reason. I've been able to select fields that are not formulated as numbers, but cannot select those that are. I was able to select QtyRow9 and UnitPriceRow10 for TotalPriceRow1, but nothing else. I can even change the quantity and unit price in Preview and it calculates correctly. However, there are over 50 more calculations in this form.
    My manager was able to open my file and Pick fields on the Calculate tab. After he saved the file and sent it back to me, I still cannot Pick as I would like to. I have Adobe 10.1.1 Standard, while he has Adobe 9.1.2 Standard (he was able to open my file with no problem). We both used Tools > Forms > Edit, although his buttons are located differently than mine. Any ideas what I might be missing?

    Pravender --> Yes fields are available when testing datasource in RSA3, but replication does not bring anything new (no selection possible on those fields)
    MD --> Ok for the fields not allowed, but here is the need on my side. Maybe somebody knows a workaround to get this selection available ? (or another way to perform it)
    I can see in the 4th tab (name is "update") in infopackage screen (BW), a frame named "time-dependant data", and here i have a possibility to filter according dependance period, but only 3 possibility :
    - fixed time interval
    - routine time interval
    - variable for interval
    but none of the three allows me to do what I want ...

  • Bug average calculation in form?

    Hye,
    I made an editable form in acrobat XI for mac.
    I set all the fields to number and the last field I want to calculate the average of all the other fields.
    So I select the fields which average I want...
    But upon testing, I'm getting impossible average calculations.
    F.ex. testing several fields with value "9", returns me a "0,..." value, which is impossible...
    How to solve?
    Thanks

    It's hard to say what's happening without seeing a sample. Can you post one somewhere? Unfortunately, you can't post one here, but can at Acrobat.com, dropbox, skydrive.com, etc.

  • Simple Sum Calculation in Forms

    I have a seriously simple situation, alas when I try to set it up, I am only able to select one field to calculate?  I am working in Adobe X.  I simply want to calculate the sum of 5 fields into a "Total" Text Field... 

    Hi miaff,
    I think this tutorial is exactly what you're looking for: http://acrobatusers.com/tutorials/how-do-i-use-basic-calculations-in-a-form
    Please let us know if you still have trouble!
    -David

  • About math calculation in form command

    i want to know  if  we can do math calculation in script form's command line?i try it by using define command ,but cann't get the result,i have to make sure if the command line have the function of math calculation?

    do ur calculations inside a subroutine and call ur subroutine in ur script.
    check this wiki on how to use subroutines inside scripts
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/external%2bsubroutines%2bin%2bsap%2bscript

  • How do I use SQL statements to perform calculations with form fields????

    Please help!!! I don't know how to use a SQL statement within my APEX form......
    My form is below. The user will enter the values in the form. Click on Submit. Then we need to run a SQL select statement with those values.
    Our form looks like this:
    Start_Date ____________
    Per_Period ____________
    Period ____________
    [Submit Button]
    The user will enter these 3 values in the form.
    This is an example of an user providing the values:
    Start_Date 03/14/08_______
    Per_Period $200.00________
    Period 4____________
    [Submit Button]
    Then they will click the Submit Button.
    The SQL statement (BELOW) returns output based on the users selections:
    START_DATE PER_PERIOD PERIOD
    14-MAR-2008 00:00 200 Week 1 of 4
    21-MAR-2008 00:00 200 Week 2 of 4
    28-MAR-2008 00:00 200 Week 3 of 4
    04-APR-2008 00:00 200 Week 4 of 4
    Total 800
    This is the full text of the SQL that makes the output above:
    with criteria as (select to_date('03/14/08', 'mm/dd/rr') as start_date,
    4 as periods,
    'Week' as period,
    200 per_period from dual),
    periods as (select 'Week' period, 7 days, 0 months from dual
    union all select 'BiWeek', 14, 0 from dual
    union all select 'Month', 0, 1 from dual
    union all select 'ByMonth', 0, 2 from dual
    union all select 'Quarter', 0, 3 from dual
    union all select 'Year', 0 , 12 from dual
    t1 as (
    select add_months(start_date,months*(level-1))+days*(level-1) start_date,
    per_period,
    c.period||' '||level||' of '||c.periods period
    from criteria c join periods p on c.period = p.period
    connect by level <= periods)
    select case grouping(start_date)
    when 1 then 'Total'
    else to_char(start_date)
    end start_date,
    sum(per_period) per_period,
    period
    from t1
    group by rollup ((start_date, period))
    THANKS VERY MUCH!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    You're just doing a parameterized report, where the input fields are your parameters.
    Check out the Advanced Tutorial titled Parameterized Report here:
    http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e10497/rprt_query.htm#BGBEEBJA
    Good luck,
    Stew

  • Arrears calculation for Form 3A for EPF

    Dear gurus
    Arrears will not be shown in forms 3A and 6A, instead they will be shown in the month in which they have originated.
    Example. . if basic is increased effective from Jan in feb, and arrears are paid in Feb, the contribution for these arrears will not be shown in Feb, but will be shown for the month of Jan.
    Is there any user exit or badi to control this??
    I am using statdard report for that through transaction code PC00_m40_PFY.
    Please Help.
    Regards
    Waseem,

    Hi
    I am using version 4.7 C and the SAP note you  told me is for 4.6.
    Please revert back if have any idea.
    Regards
    Waseem

  • Arrears calculation for Form 3A for Provident Fund

    Hi,
    Arrears will not be shown in forms 3A and 6A, instead they will be shown in the month in which they have originated.
    Example. . if basic is increased effective from Jan in feb, and arrears are paid in Feb, the contribution for these arrears will not be shown in Feb, but will be shown for the month of Jan.
    Is there any user exit or badi to control this??
    I am using statdard report for that through transaction code PC00_m40_PFY.
    and we have latest version ecc 6.0
    Please Help..
    Regards
    pramod

    Hi
    The situtation which you had described can be changed by chaning the PF deduction methood to gross carry forward.
    IN Standard PF retro behaviour follows the deduction carry forward method in which the PF deduction of any previous period will appear in the monthly return of that respective month. This is as per our understanding from where any retro change should be applicable for that period.
        For any alternate behaviour you may choose the Gross Carry Forward forward method for the retro.
    SAP note  No: 431991:  "Changing Retroactive Behavior of PF Functionality". You need to follow the steps as mentioned in the SAP note.

  • How do I make basic percentage calculation in forms?

    I have a simple calculation I need to perform
    Quantity Passed divided by quantity failed = percentage failure.
    Thank you.

    What are the exact names of the fields involved in the calculation? Are the passed/failed values already being calculated or do you need to do that as well? If it's possible that the quantity failed amount can ever be zero/blank, you will have to use JavaScript.

  • Conditional Calculation in Form

    I want to calculate Payee. where we where given a slab
    Taxable amount = 150000
    1st 30000 = 5%
    2nd 30000 = 10%
    3rd 50000 = 15%
    4th 50000 = 20%
    balance = 25%
    please suggest any code how to do this .
    sandy

    Hi Sandy,
    Use this code.
    declare
        taxable_amout number;
        tax number := 0;
        rem number := 0;
    begin
        rem := taxable_amount;
        if rem >= 30000 then
          tax := tax + 30000 * 0.05; -- first 5%
          rem :=  taxable_amout - 30000;
       end if;
        if rem >= 30000 then
          tax := tax + 30000 * 0.1; -- next 10%
         rem := rem - 30000;
       end if;
       similarly extend your logic..
    end;You can store your tax slabs in a table and then store these 30000 etc into variables.
    Hope it helps.
    Please mark answer as helpful / correct, if it helps you
    Navnit

  • A form that displays calculated data

    Hi, I'm trying to insert a function from my database onto the
    webpage. I created a form, and on that form is a formula that adds
    to numbers together (for simplicity). I want to be able to insert
    these two numbers onto the webpage (which I can do) and have
    another field that displays the total. Any ideas on how to do
    this?

    Just to clarify what I wrote earlier. I have created a
    database connection using DSNless string. In Access, you can only
    create calculations on forms, but dreamweaver only accepts values
    from tables. How do I make it so that when I enter two numbers onto
    the form in dreamweaver and make these display a total of the two
    numbers? I can perform the "Insert Record" bit fine, and create a
    formula to calculate their total, but I cannot display that total
    on dreamweaver. Is there a way to display a calculated field on a
    form in Access into a form in Dreamweaver?

  • How is Form Conversion Rate been calculated

    Can anyone help me understand how the form conversion rate been calculated in the Landing Page Activity for Date Range report in Insight? Trying to figure out the conversion rates been measured in this report, so that we can properly interpret the results from below. Thank you in advance!
    Landing page Activity for Date Range in Insight   
    Landing Page
    Total Visits (by visitor)
    Total Page Views
    Total Visitors
    Average Page Time
    Total Form Submissions
    Form Conversion Rate
    my.learning.com/forms
    381
    422
    375
    0:09:25
    28
    100.00%
    Transition | LP
    18
    28
    17
    0:05:53
    2
    100.00%
    GoCool.html
    17
    18
    14
    0:13:09
    56
    77.78%
    Summer Training 2015 Confirmation | EMAIL
    21
    34
    14
    0:08:15
    22
    57.89%
    events.Training.com/forms/ISContactUs
    27
    57
    25
    0:05:29
    21
    45.65%

    Thanks so much for your detailed reply!
    I checked into "Landing Page Activity for Date Range" report again and accidently hovered over "Form Conversion Rate"; it displayed the formula as "Total Form Submissions / Total Form Views". I added that metric to the report and saved locally. Now the Form Conversion Rate does equal to the calculation of Total Form Submissions / Total Form Views; data copied below. However, that formula is different from the one specified in the "Insight_ReportDetails_Guide", which is "Total Submits / Total Page Views").
    Now, here comes the new questions for your help/ideas/suggestions -
        - How come in our "Landing Page Activity for Date Range", the formula for Form Conversion Rate is different from the one listed in "Insight_ReportDetails_Guide"?
        - Can we change it to use this formula: Total Submits / Total Page Views?
        - Which one indeed is the correct calculation for Form Conversion Rate in "Landing Page Activity for Date Range" report?
    Landing Page
    Total Visits (by visitor)
    Total Page Views
    Total Visitors
    Total Form Views
    Total Form Submissions
    Form Conversion Rate
    Landing Page 1
    5
    6
    5
    6
    0
    0.00%
    Landing Page 2
    58
    86
    56
    3
    3
    100.00%
    Landing Page 3
    14
    15
    13
    15
    2
    13.33%
    Landing Page 4
    16
    17
    16
    0
    0
    0.00%
    Landing Page 5
    66
    144
    55
    143
    1
    0.70%
    Landing Page 6
    21
    47
    20
    45
    1
    2.22%
    Landing Page 7
    24
    25
    13
    25
    6
    24.00%
    Landing Page 8
    12
    13
    12
    13
    3
    23.08%
    Landing Page 9
    31
    37
    27
    6
    6
    100.00%
    Landing Page 10
    24
    33
    21
    31
    4
    12.90%
    Thank you very much!
    Xuan

  • Form 16 - Issue on arrear amount

    Dear all,
    I have run payroll of April, 2010 and also for May month with revision of salary w.e.f. April, 2010. There some employees are getting arrears. In form 16 when I am checking the amount of that wage type in emoluments paid (page no. 4) that is taking etc amount of arrears.
    e.g. April month Basic 2000, Spl allow 3000 then because of promotion now basic is 2800, spl allow 4000.
    as per the calculation in form 16 emolument paid, Basic should come = 20002800800 = 5600 and Spl allow should come = 300040001000 = 8000.
    but here it is calculating like this :
    Basic = 28002800800 = 6400
    Spl Allow = 400040001000=9000
    It is adding up etc arrear amount in pay-result of April month. it is generating double record of April month one with old payroll run and one with new revision details and considering the new one for form 16 calculation.
    Kindly suggest me the solution.
    Thanks & Regards,
    Verma N

    problem has resolved.
    Thanks to all.

Maybe you are looking for