Please HELP: forms PDF, creating an average formula for text?

Hello

I really hope that somone can help. I can't find all the answers to my questions on the internet, google etc.

First time using Acrobat. IM quick enough for learning about compters however formulas that my boss has asked me to do I don't know if they are possible.

We have a report form, for exams, and each section that I need to calculate the average score for this section.

There are 3 issues in the first section. There are drop down menus for distinction, merit and pass below collar to select for each question.

Please see attached picture to show you what I mean.

I want to be able to calculate the most selected/average selected dropdowns and don't count the award1 terrainpour na?

The fields must be text and can not be numbers.

Thus, for example, track 1 won an award, track 2 obtained a merit, track 3 got a distiction. all other fields left n/a

Screen Shot 2013-10-10 at 12.15.12.png

is there anyway to do this, so it is possible to exactly the same as above as checkboxes? s ' please see attached picture

Screen Shot 2013-10-10 at 12.17.59.png

I appriciate any help. I'm working on a mac

Thank you

Lauren

Let's say that the box fields are called 'CheckBox 1' to "box 12". You must set their export value (under Properties - Options) to the value that they reprenset, and then you can use this script to calculate the average:

var total = 0;

var n = 0;

for (var i = 1; i)<=12; i++)="">

var v = this.getField("CheckBox"_+i).value;

If (v! = 'Off') {}

n ++ ;

Total += Number (v);

}

}

If (n == 0) {}

Event.Value = "";
} else event.value = total/n;

Tags: Acrobat

Similar Questions

  • Please help me in creating table

    Hi all
    I want to create a table for TKT_CONJ TKT_CONJ., it's the main table and TKT_MAIN is the reference table.

    SQL > create table TKT_CONJ (iss_arln, number 4)
    2 doc_no Number (12).
    3 serial_no Number (2),
    4 conj_doc_no Number (12).
    5 cpn_status char (4),
    primary key for constraint 6 PK_TKT_CONJ (iss_arln, doc_no, serial_no),
    7 number references 4 iss_arln TKT_MAIN (iss_arln),
    8 doc_no Number (12) references TKT_MAIN (doc_no));
    iss_arln number 4 references TKT_MAIN (iss_arln),
    *
    ERROR on line 7:
    ORA-00957: duplicate column name

    Name column name Type Nullable constraints reference Table reference data column of the table

    TKT_CONJ iss_arln number 4 not null PK_TKT_CONJ TKT_MAIN iss_arln
    doc_no Number (12) not null PK_TKT_CONJ TKT_MAIN doc_no
    serial_no Number (2) PK_TKT_CONJ
    conj_doc_no Number (12)
    cpn_status char (4)


    TKT_MAIN iss_arln number 4 not null PK_TKT_MAIN
    doc_no Number (12) not null PK_TKT_MAIN
    doc_type tank (3)
    issue_agent tank (8) Not null


    Please help in this issue

    Thank you and best regards,
    Vijay,

    Published by: user5456635 on July 7, 2009 06:42

    Delete references (twice) and Add (at the botom):

    constraint bla foreign key (iss_arln,doc_no) references TKT_MAIN(iss_arln,doc_no)
    
  • Please help me! I had downloaded trail for lightroom now after... the serial key is requested for each adobe software? It was my dads macbook? and I don't know the old serial key? Please help, please help me! I had downloaded the trail for the light

    I was hoping to try version track Lightroom which was unssecesful now expires, can I use the adobe program I have in my macbook, the serial key is required for all software please help me...

    In an open forum, no one can help with a problem of serial number

    You must contact Adobe personnel to help
    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)

    Creative cloud support (all creative cloud customer service problems)
    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

    or

    Serial number and activation support (non - CC)

    http://helpx.Adobe.com/x-productkb/global/Service1.html

  • Please help me to assign a new Id for different people

    version 11g

    Please help me in new id of person assiging for dirrerent so people it's middle name is different
    I've listed on three scenarios in the example below. Please help me

    WITH NAMES AS( 
     /* Scenario1 -- Three dirrerent people so assign Three diffrrent ID,
                      keeping 1 id as is and assign two new ids from sequence*/
     SELECT 47540310 ID , 'WO' LAST_NAME , 'ROBERT' FIRST_NAME , 'C' MIDDLE_NAME FROM DUAL UNION ALL  
     SELECT 47540310 ID , 'WO' LAST_NAME , 'ROBERT' FIRST_NAME , 'W' MIDDLE_NAME FROM DUAL  UNION ALL  
     SELECT 47540310 ID , 'WO' LAST_NAME , 'ROBERT' FIRST_NAME , 'X' MIDDLE_NAME FROM DUAL  UNION ALL  
    
      /* Scenario2 NULL can be equal to any value if there is only one value to equate with 
        In the below case we have two values that can equate with null so assign three diffrent ids */
     
     SELECT 47540300 ID , 'AMATUZIO' LAST_NAME , 'ALBERT' FIRST_NAME , 'J' MIDDLE_NAME FROM DUAL UNION ALL  
      SELECT 47540300 ID , 'AMATUZIO' LAST_NAME , 'ALBERT' FIRST_NAME , NULL MIDDLE_NAME FROM DUAL  UNION ALL 
     SELECT 47540300 ID , 'AMATUZIO' LAST_NAME , 'ALBERT' FIRST_NAME , 'L' MIDDLE_NAME FROM DUAL  UNION ALL
    
      /* Scenario3 NULL can be equal to any value if there is only one value to equate with 
        In the below case we have ONE VALUE  that can equate with null so DONT ASSIGN ANY IDS*/
     SELECT 17540300 ID , 'AMARONE' LAST_NAME , 'JOSEPH' FIRST_NAME , 'J' MIDDLE_NAME FROM DUAL UNION ALL   
     SELECT 17540300 ID , 'AMARONE' LAST_NAME , 'JOSEPH' FIRST_NAME , NULL MIDDLE_NAME FROM DUAL
    
     )
     Select * from names
     
     o/P Required
     ID    LAST_NAME    FIRST_NAME    MIDDLE_NAME
    
    47540310    WO      ROBERT          C
    99999990    WO      ROBERT          W                   -- New Sequence Number
    99999991     WO      ROBERT         X                   -- New Sequence Number
    47540300    AMATUZIO    ALBERT    J
    99999992    AMATUZIO    ALBERT                          -- New Sequence Number
    99999993    AMATUZIO    ALBERT    L                     -- New Sequence Number
    17540300    AMARONE    JOSEPH    J
    17540300    AMARONE    JOSEPH    
    Thank you

    Published by: new learning June 7, 2012 14:12

    I do not understand what does this line:

    FIRST_VALUE (fn_get_person_id) - sequence to function

    I feel that the only difference with my query is to select distinct values, do not consider duplicates. Correct me if I'm wrong.

    For me, this should give the same result as your query:

    WITH NAMES AS ( /* Scenario1 -- Three dirrerent people so assign Three diffrrent ID, keeping 1 id as is and assign two
    new ids from sequence*/
                   SELECT   47540310 ID,
                            'WO' LAST_NAME,
                            'ROBERT' FIRST_NAME,
                            'C' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   47540310 ID,
                            'WO' LAST_NAME,
                            'ROBERT' FIRST_NAME,
                            'C' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   47540310 ID,
                            'WO' LAST_NAME,
                            'ROBERT' FIRST_NAME,
                            'W' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   47540310 ID,
                            'WO' LAST_NAME,
                            'ROBERT' FIRST_NAME,
                            'X' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   /* Scenario2 NULL can be equal to any value if there is only one value to equate with
                     In the below case we have two values that can equate with null so assign three diffrent ids */
                   SELECT   47540300 ID,
                            'AMATUZIO' LAST_NAME,
                            'ALBERT' FIRST_NAME,
                            'J' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   47540300 ID,
                            'AMATUZIO' LAST_NAME,
                            'ALBERT' FIRST_NAME,
                            NULL MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   47540300 ID,
                            'AMATUZIO' LAST_NAME,
                            'ALBERT' FIRST_NAME,
                            'L' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   /* Scenario3 NULL can be equal to any value if there is only one value to equate with
                     In the below case we have ONE VALUE  that can equate with null so DONT ASSIGN ANY IDS*/
                   SELECT   17540300 ID,
                            'AMARONE' LAST_NAME,
                            'JOSEPH' FIRST_NAME,
                            'K' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   17540300 ID,
                            'AMARONE' LAST_NAME,
                            'JOSEPH' FIRST_NAME,
                            'Y' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   17540300 ID,
                            'AMARONE' LAST_NAME,
                            'JOSEPH' FIRST_NAME,
                            NULL MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   17540300 ID,
                            'AMARONE' LAST_NAME,
                            'JOSEPH' FIRST_NAME,
                            'M' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   17540300 ID,
                            'AMARONE' LAST_NAME,
                            'JOSEPH' FIRST_NAME,
                            'M' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   99999999 ID,
                            'LO' LAST_NAME,
                            'CHRISTY' FIRST_NAME,
                            NULL MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   99999999 ID,
                            'LO' LAST_NAME,
                            'CHRISTY' FIRST_NAME,
                            'M' MIDDLE_NAME
                     FROM   DUAL
                   UNION ALL
                   SELECT   99999999 ID,
                            'LO' LAST_NAME,
                            'CHRISTY' FIRST_NAME,
                            'M' MIDDLE_NAME
                     FROM   DUAL),
     sel_names AS (  SELECT id
                              , last_name
                              , first_name
                              , middle_name
                              , COUNT (middle_name) OVER (PARTITION BY id ORDER BY middle_name) cnt
                              , ROW_NUMBER () OVER (PARTITION BY id  ORDER BY middle_name) rown
                           FROM (SELECT DISTINCT * FROM names) -- use SELECT DISTINCT here to remove duplicates
                       ORDER BY 1, 2, 3, 4
                       )
    SELECT 8888888 new_id, id, last_name, first_name
         , middle_name
      FROM sel_names
     WHERE cnt > 1 AND rown > 1;
    

    As you can see I have just replace the table with a view of inline using SELECT DISTINCT *.

                           FROM (SELECT DISTINCT * FROM names) -- use SELECT DISTINCT here to remove duplicates
    

    For the new id I put a dummy value 888888, you can use a function or sequence according to your needs.

    Kind regards.
    Al

  • Please, help me to create the foreign key.

    Oracle 10g using sqldbx

    I tried everything I could but all in vain.

    (Folder) CREATE TABLE
    FolderId INT NOT NULL PRIMARY KEY,
    FolderName varchar (255) NOT NULL,
    CreatedBy varchar (255) NOT NULL,
    CreateDate TIMESTAMP NOT NULL
    )


    (Document) CREATE TABLE
    DocumentID INT NOT NULL PRIMARY KEY,
    FolderId INT NOT NULL,
    DocumentTitle varchar (255) NOT NULL,
    DocumentAuthor varchar (255) NOT NULL,
    CreateDate TIMESTAMP NOT NULL
    )



    Document of ALTER TABLE ADD CONSTRAINT fkdocument FOREIGN KEY (document.folderid) REFERENCES (the folder. FOLDERID)

    the last statement says invalid folder name. Help, please

    Hello

    Welcome to the forum!

    See the Manual of the SQL language for the correct syntax:

    ALTER TABLE     document
    ADD CONSTRAINT      fkdocument
    FOREIGN KEY      (folderid)
    REFERENCES      folder (FOLDERID)
    ;
    

    Thanks for posting your code! It is very useful.
    Have you seen the FAQ forum yet? {message: id = 9360002}

  • Please help us by creating features excisitng of browsers. Where can I find exe to install Firefox14 on my machine.

    I have to make the configuration of the browser test on Firefox 14. Where can find the exe to install the same on my mahcine to windows7. I'm strictly looking for Firefox14 only. Thanks in advance for the help.

    Hi reaves009,

    You can't find 14 because it is non-existent, only 14.0.1

    Install an older version of Firefox

    Thank you

  • Please help me to download the right software for my pc allows me to use a webcam!

    My pc hp laptop g56 129 wm is not allowing me to add a webcam, Bell and Howell Dv1200 HD. I downloaded the software provided with the camera to the PC and also, I went online and bought Driver Detective but the pc still says that there is no software to open the webcam! Help, please! Thank you!!!

    have you tried to install in compatibility mode?

    Click with the right button on the installer > properties > compatibility > chose the operating system

    http://Windows.Microsoft.com/en-us/Windows-Vista/make-older-programs-run-in-this-version-of-Windows?SignedIn=1

  • Merge to PDF - create a unique name for each PDF file

    I have been regularly mail merge documents to PDF using Microsoft Word and Microsoft Excel for quite some time, but once I have a long list of PDF documents I then have to rename each to what it must be rather than 'PDFMailer123 '.

    Which would save me a lot of time with the renaming of the documents is so trying to create the PDF (with Adobe Acrobat), he was able to pick up a field in the worksheet excel information fusion to name the document.

    Is there a way to do this?

    Yes, it can be done if you do direct mail using a script.

  • Please HELP!, when I start the installer for Adobe AE CS4, pops up a message that says: cannot install. Done, click Exit. Help, please! My OS is 32-bit. (Windows Ultimate)

    HELP me please!, Adobe AE CS4 gives me this error: cannot install. Done, click Exit.

    Check the configuration required on your system to see if your system is not enough.

    After Effects - http://helpx.adobe.com/after-effects/system-requirements.html

  • Please help trouble Code 43 error graphics card for XPS 8700 (as well as the disappearance of sleep/Standby Mode) (Windows 10)

    I got my XPS in 2014 and my warranty of service completed in 2015 Jan before I installed Windows 10. So since I've upgraded to Windows 10 I started having problems with by XPS 8700. Now, I have no guarantee. I thought he would go better once they have released an update of the BIOS and it did for a while unfortunately in recent months, I noticed two major issues.

    (1) upon the starting and restarting my computer, my monitor does not end up receiving the signal from the computer and remains dark.

    -Checking that it is not a problem with the monitor by testing with other computers

    -J' checked in the Device Manager and there was a next yellow alert for graphic cards / NVIDIA GeForce GT 635

    -By clicking on, he showed me this: Windows has stopped this device because it has reported problems. (Code 43)

    Unfortunately, it is not the only problem with the graphics card.

    (2) "sleep" my mode is gone (it is related to graphics and BIOS).

    -J' tried the go in power to add setting but it was not yet listed.

    -I went to the command prompt and looked powercfg.exe that's what I discovered:

    C:\Windows\System32>Powercfg - a

    The following sleep States are available on this system:

    Hibernate

    Quick start

    The following sleep States are not available on this system:

    Standby (S1)

    The system firmware does not support this standby state.

    An internal system component has disabled this standby state.

    Graphics

    Standby (S2)

    The system firmware does not support this standby state.

    An internal system component has disabled this standby state.

    Graphics

    Standby (S3) mode

    An internal system component has disabled this standby state.

    Graphics

    Eve (S0 low idle power)

    The system firmware does not support this standby state.

    Hybrid sleep

    Standby (S3) mode is not available.

    Now I really wish I could start or restart my pc without staring at a blank screen and the problem of code 43 with Nvidia GeForce GT 635. Also, I would if I could have the option to upgrade my PC to sleep. I really miss it and do not have to constantly reboot my computer to be able to see anything on the monitor.

    I hope someone can help me with these questions without having to reset the pc and reinstall, all over again, that the problem still exists in other cases (I don't have a copy of the installation of programs pre-installed dells so...). This computer is only 2 years old, it didn't need to be retired.

    NVIDIA GeForce GT 635 (PCI\VEN_10DE & DEV_1280) the card is physically wrong and needs to be replaced.

  • I have my product key (on my computer laptop back) but I don't have xp home edition cd please help... I am looking for the link to download...

    No custemer service on my area... so I need link to download

    There is no link to download. You need to contact the computer manufacturer that he provided.

  • How can I create an iso file for windows 8.1 in Acer E5-511-p25j

    Please help me to create an iso file for the windows 8.1 oem pre installed on my laptop for future reference, Yourhelp will be appreciated.

    Press

    the Windows logo key + s

    type

    Acer erecovery

    Click the Acer erecovery

    follow the instructions on the screen to create a recovery media

  • Interactive PDF: creating forms and anchor text field

    Hi, I'm new to this and have an urgent job, so please help:

    I create an interactive PDF file, adding fields of text placed above the lines and wonder how I can:

    1 ANCHOR these fields for text, we use for photo boxes or anchor text... and

    2. place the text fields anchored above the lines that I typed in the space allocated for this text field.

    Any help would be appreciated, thanks!

    You can use an anchored object. Place your cursor after the text and create an anchor, this will put an anchor point. Once the image is inserted, it can be converted into a text field. Use the 'Relative to anchor Marker' option, which will allow the anchor around if text is added.

  • I want to loop through the data from two different tables using for loop where the query should be replaced at runtime, please help me

    I have the data into two table with the structure of similar column, I want to loop through the data in these two tables

    based on some condition and runtime that I want to put the query in loop for example, the example is given, please help me

    create table ab (a number, b varchar2 (20));

    Insert into ab

    Select rownum, rownum. "" sample "

    of the double

    connect by level < = 10

    create table bc (a number, b varchar2 (20));

    Insert into BC.

    Select rownum + 1, rownum + 1 | "" sample "

    of the double

    connect by level < = 10

    declare

    l_statement varchar2 (2000);

    Boolean bool;

    Start

    bool: = true;

    If it is true, then

    l_statement: =' select * ab ';

    on the other

    l_statement: =' select * from bc';

    end if

    I'm in execute immediate l_statement - something like that, but I don't know

    loop

    dbms_output.put_line (i.a);

    end loop;

    end;

    Something like that, but this isn't a peace of the code work.

    Try this and adapt according to your needs:

    declare

    l_statement varchar2 (2000);

    c SYS_REFCURSOR;

    l_a number;

    l_b varchar2 (20);

    Boolean bool;

    Start

    bool: = true;

    If it is true, then

    l_statement: = "select a, b, AB;

    on the other

    l_statement: = "select a, b from bc;

    end if;

    --

    Open c for l_statement;

    --

    loop

    extract the c in l_a, l_b;

    When the output c % notfound;

    dbms_output.put_line (l_a |') -' || l_b);

    end loop;

    close c;

    end;

    /

  • I'm havin' a time helluva determine how to scan 35mm slides... Please HELP!

    I dug up a treasure box of old 35mm slides from 50-70 ' ies.  Problem is that I can not understand how say that scans the slide or to look through, incidentally, without in mirror image.  The slides that have alpha-numeric characters in the background are fairly easy, but those who don't kill me. Hoping someone here can give me some advice!  Thanks in advance.

    Chris

    If they have been processed by Kodak and Kodak cardboard supports, the logo goes away from you when you look at the slide. In the case of plastic materials, they are often embossed with the text ' this side screen "on one side, or have some other difference evident between front and rear. I would take a peek at those you know are facing the right way and then others based on those in the case of similar media.

    From: Adobe Forums [email protected]<>[email protected]>

    Reply-To: "[email protected]<>[email protected]> ' [email protected]<>[email protected]>" "

    Date: Saturday January 7, 2012 23:08:42 + 0000

    To: default user Nam [email protected]<>[email protected]>

    Topic: I'm havin' a time helluva determine how to scan 35mm slides... Please HELP!

    I'm havin' a time helluva determine how to scan 35mm slides... Please HELP!

    created by I Strugglin Mhttp://forums.adobe.com/people/IMStrugglin > in the application for Community assistance - see complete discussion onhttp://forums.adobe.com/message/4124282#4124282

Maybe you are looking for