How do you create a calculation that automatically updates changes?

Hi all,
I am trying to create a calculation using subtraction. This is how it is set out:
KM
-KG
=Field1
-Field2
=GM (fluid)
Under the calculate tab for Field 1, I have written in the Simplified field notation:
KM-KG
And under the calculate tab for =GM (fluid), I have written in the Simplified field notation:
Field1-Field2
And this all works perfectly providing I don't change any of the totals in the KM or KG or Field2 fields.
If I make changes in those fields they don't automatically update.
How do I make them automatically update?
Any assistance would be hugely appreciated.
Many thanks.
Bridie

To set the field calculation order, first go into form editing mode (Tools > Forms > Edit) and then: Tasks > Other Tasks > Edit Fields > Set Field Calculation Order
Order the fields in the list to whatever makes sense for your form. Be sure to do this again once you have the form working like you want to make sure it's still set up correctly.

Similar Messages

  • How do you create a full frame sequence to change it from wide to full

    How do you create a new full frame sequence to change it from wide to full screen to burn a dvd? I tried creating a new project and importing the current sequence, but it imports the entire project with all the individual clips on the timeline, what is the practical way of doing this?
    Thanks
    Elio

    Create a new sequence using "full frame settings" and then nest the widescreen sequence in the new sequence. Now scale the nested sequence to your satisfaction.
    You will also find links to many free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
    Cheers
    Eddie

  • 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 do you create a part that has two through holes with a single net connecting to both.

    I attempted to create a part that contained 2 through holes with a copper strip between them so they would connect to a single net, but one of the holes (pin 2) gets rejected by Ultiboard as an unconnected entitiy. Is there a way to define the second hole (pin 2) in such a way as to mitigate the problem?
    Thanks, Tod
    Solved!
    Go to Solution.

     Hi
    It is quite simple to do so:
    when making the footprint, you just put your two TH pins where you need them. name them 1 and 2.
    Then in Multisim, when making a new component with the component wizzard,in step 2 make a 1-pin component, and select your desired footprint(which has two pins).
    thenin step 3, make/choose your 1-pin symbol.
    In step 5 you can map the footprint to the symbol , just use both footprint pins for the same symbol pin.
    When using it in your schematic, you'll see one pin, in the layout, there will be two pins connected together..
    Good luck
    stressed user..

  • How do you create a form that has user permissions per form field for different user?

    I need to create a form that is used by multi people but each user needs to fill out different fields within the form. I need the first user to make selections from a list and save it to send to another (the selection fields then need to be locked). Then the other user checks one of the selections made by the first user and saves the document to send back to the first user. Not sure if this is possible. I would like the first form field selections not to even show as a highlighted field to the other user (like just be more like a text field). I want the document to be able to be used more than once. The list selections will change and need to be sent to the other user at least once a month or more. Has anyone done this?

    There's no built-in way to do that, but it's probably doable using a custom-made script to hide and/or lock the fields.

  • How do I create a template that will update all pages when it is updated?

    Hi everyone, I am a complete InDesign newbie, as this is my first project with it. I was wondering if there is a way to create a generic template in InDesign that, when updated, would also update all the pages made from it. The behavior I am looking for is similar to the way Dreamweaver does templates... when you create a new page, you can tell it to make the page from the already created template. That template has been pre-configured with editable regions. Anything outside the editable regions cannot be modified unless editing the template directly.
    Does this functionality exist in InDesign? I am running CS5.
    Thanks!

    drmuzik wrote:
    Hi everyone, I am a complete InDesign newbie, as this is my first project with it. I was wondering if there is a way to create a generic template in InDesign that, when updated, would also update all the pages made from it. The behavior I am looking for is similar to the way Dreamweaver does templates... when you create a new page, you can tell it to make the page from the already created template. That template has been pre-configured with editable regions. Anything outside the editable regions cannot be modified unless editing the template directly.
    Does this functionality exist in InDesign? I am running CS5.
    Thanks!
    Take a look at this article:
    http://indesignsecrets.com/free-layout-zones-add-on-is-incredible-productivity-tool.php
    Also, this commercial tool might be useful:
    http://www.rorohiko.com/wordpress/indesign-downloads/storytweaker/#Downloads
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How can you create a simple insert or update trigger

    I am trying to create a simple insert or update trigger to timestamp an xml document when I load it into my XML DB repository but I always get an error trying to compile the trigger.
    "ORA-25003: cannot change NEW values for this column type in trigger"
    Here is my PL/SQL:
    CREATE OR REPLACE TRIGGER "PLCSYSADM"."PLCSYSLOG_TIMESTAMP"
    BEFORE
    INSERT
    OR UPDATE ON "PLCSYSADM"."PLCSYSLOG"
    FOR EACH ROW BEGIN
    :new.sys_nc_rowinfo$ := xmltype('<datestamp>' || SYSDATE || '</datestamp>');
    END;
    Does anyone have an example that works ?
    Thanks in advance
    Niels Montanana

    http://developer.apple.com/referencelibrary/HardwareDrivers/idxUSB-date.html

  • How can I create a calculator that save result in memory and recall it back

    I need some advice or help on how i can save the result and call it back by typing 'm' for memory, 'r' for recalling the saved result, and 'c' to set the result back to zero.
    i have tried many ways but it doesn't seem to save the result.
    Here is the code of what i have so far.
    so, please if anyone could help me , it would be greatly appriciated.
    import java.util.Scanner;
    public class ImpCalculator
         private double result;
         private double memory;
         private double precision = 0.0001;
         public static void main (String [] args)
              Calculator clerk = new Calculator ();
              try
                   System.out.println ("Calculator is on.");
                   System.out.print ("Format of each line: ");
                   System.out.println ("operator space number");
                   System.out.println ("For example: + 3");
                   System.out.println ("To save result, enter the letter m.");
                   System.out.println ("To recall result, enter the letter r.");
                   System.out.println ("To clear result, enter the letter c.");
                   System.out.println ("To end, enter the letter e.");
                   clerk.doCalculation ();
              catch (UnknownOpException e)
                   clerk.handleUnknownOpException (e);
              catch (DivideByZeroException e)
                   clerk.handleDivideByZeroException (e);
              System.out.println ("The final result is " + clerk.getResult ());
              System.out.println ("Calculator program ending.");               
         public ImpCalculator ()
              result = 0;
              memory = 0;
         public void handleDivideByZeroException (DivideByZeroException e)
              System.out.println ("Dividing by zero.");
              System.out.println ("Program aborted");
              System.exit (0);
         public void handleUnknownOpException (UnknownOpException e)
              System.out.println (e.getMessage ());
              System.out.println ("Try again from the beginning:");
              try
                   System.out.print ("Format of each line: ");
                   System.out.println ("operator number");
                   System.out.println ("For example: + 3");
                   System.out.println ("To end, enter the letter e.");
                   doCalculation ();
              catch (UnknownOpException e2)
                   System.out.println (e2.getMessage ());
                   System.out.println ("Try again at some other time.");
                   System.out.println ("Program ending.");
                   System.exit (0);
              catch (DivideByZeroException e3)
                   handleDivideByZeroException (e3);
         public void reset ()     
              result = 0;
         public void setResult (double newResult)
              result = newResult;
         public double getResult ()
              return result;
         public void setMemory (double newMemory)
              memory = newMemory;
         public double recall ()
              return memory;
         public double evaluate (char op, double n1, double n2)
              throws DivideByZeroException, UnknownOpException
              double answer;
              switch (op)
                   case '+':
                        answer = n1 + n2;
                        break;
                   case '-':
                        answer = n1 - n2;
                        break;
                   case '*':
                        answer = n1 * n2;
                        break;
                   case '/':
                        if ((-precision < n2) && (n2 < precision))                         
                             throw new DivideByZeroException     ();          
                        answer = n1 / n2;
                        break;
                   default:
                        throw new UnknownOpException (op);
              return answer;     
         public void doCalculation () throws DivideByZeroException, UnknownOpException
              Scanner keyboard = new Scanner (System.in);
              boolean done = false;
              result = 0;
              System.out.println ("result = " + result);
              while (!done)
                   char nextOp = (keyboard.next ()).charAt (0);
                   if ((nextOp == 'e') || (nextOp == 'E'))
                        done = true;
                   else if ((nextOp == 'c') || (nextOp == 'C'))
                        result = 0.0;     
                   else if ((nextOp == 'm') || (nextOp == 'M'))
                        memory = result;
                   else if ((nextOp == 'r') || (nextOp == 'R'))
                        System.out.println ("memory value = " + recall ());
                   else
                        double nextNumber = keyboard.nextDouble ();
                        result = evaluate (nextOp, result, nextNumber);
                        System.out.println ("result " + nextOp + " " + nextNumber + " = " + result);
                        System.out.println ("update the result = " + result);
    Edited by: shadowjuan450 on Oct 28, 2008 8:20 AM

    What trouble are you having? Is it not compiling? Throwing errors? Not doing what you expected?
    Also: Use the "CODE" tags when posting code, it makes it much easier to read.
    Lastly: Find a specific area in the code you're having trouble with, and ask directed questions about that specific area.

  • How can I create a filter that automatically copies sent items to other folder than "sent" folder?

    I tried to create filter which automatically copies sent to different recipients messages to other folder than "sent". I tried many times with different setting but it doesn't work. With inbox messages it works fine.
    Thank you

    If you want to 'reply' to an email, but you want the sent reply to auto appear in the same folder of the message you are replying to.
    Tools > Account Settings > Copies & folders for the mail account
    There is a checkbox to select: 'Place replies on the folder of the message being replied to'
    then click on OK to save changes.
    If you want all sent emails not just replies to got to different fodlers based on who you sent the email to, then you would need to create a filter which when manually run moves selected emails to specific folders.
    So let the sent emails get auto stored in Sent folder.
    Tools > Message Filter
    click on New
    give filter suitable name
    Apply filter when: manually run
    select 'match all of the following'
    To is email address
    Perform these actions
    Move message to and select the folder.
    Do not enable.
    When you need to run this filter,
    open Message filter.
    enable only the filters you require
    Run selected filters on: Sent folder on the mail account
    click on 'run now'
    Best used when you have several sent emails which you need moving.
    Not exactly what you are looking for, but works if organising loads of sent emails.

  • How do You create menu buttons that move up and down with a remote?

    I have six menu items that are linked to their proper locations. When I simulated it a Hand moves over the proper choice then when I click there we go.
    But on the DVD simulator you can't navigate. I thought maybe I would bring in one of the templates to use their buttons I can't get my images to replace theirs. Any help appreciated.
    Jerome

    Take a look here to make sure buttons are being set properly
    http://dvdstepbystep.com/buttons07m.php
    And download the movie if you like
    I create a button, then set the text and include highlights
    I then create another button, then set the text and the include highlights
    I then click on the menu and go to the inspector to see colors
    RED Normal
    BLUE Selected
    YELLOW Activated
    In simulater I then use the remote control and CANNOT navigate through the buttons
    I stop Simulator and then use Auto Assign Buttons Now Command, then relaunch Simulator and get the remote control to work
    Make sure to link the button to the track you want to go to.
    I thought the issue is that you cannot navigate the buttons with the remote control? If you only have one button on the screen, it will always be selected (Yellow in your project as described)
    If it is flashing Megenta and nothing happens, it means a target has not been set (or somehow you are targeting the menu again)
    So the only two condiitions you will see is yellow or magenta.

  • How do I create a formula that automatically adds time to cells?

    ie: A1 is 10:00:00, A2 is+ :30 sec, A3 is +:30 and have if fill down.
    Thanks,
    JJ

    In Numbers, adding 12 to a date time value add one day.
    As most often, there are 24*60*60 seconds in a day, adding 30 seconds requires the formula :
    =original_Date_Time + 30/(24*60*60)
    adding one minute requires the formula :
    =original_Date_Time + 1/(24*60)
    Of course you may inserted pre-calculated products :
    for the ist one :
    =original_Date_Time + 30/86400
    or
    =original_Date_Time + 3/8640
    or
    =original_Date_Time + 1/2880
    for the second one :
    =original_Date_Time + 1/1440
    You may also insert the original value in A1 : 10:00:00
    in A2, insert 10:00:30
    Select A1:A2 drag and drop the bottom right circular handle to the bottom as it's explained in iWork Formulas and Functions User Guide and as it was already explained here many times.
    Yvan KOENIG (VALLAURIS, France) jeudi 2 juin 2011 16:12:10
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • How do you create a chart that resizes as table of data resizes

    I have a table which has a variable number of constituents (for the x axis). I have a variable field that determines a matched look up from a much larger database and this populates a table which in turn feeds my chart. Only problem is at the moment the chart has to read data from a v large set of data to capture any eventuality - in this case the graph often has a large gap to the right when data isn't in the table.
    Excel can get around this. Can Numbers?
    Thanks.

    You can filter your table so non-blank rows are hidden. The chart will then not include those rows.

  • How do you create a shot that has several different video "layers"?

    I saw an episode of Workaholics where Adam stays up all night and there is a part where he is sitting on the kitchen floor but there is a "second" Adam running around the house at the same time. I would like to try and recreate this but I'm new to Premiere and I don't know the exact terminology that would explain this better. For reference, it is episode 12 "telamerican horror story" of season 3.
    Thanks!

    That scene could be a problem.
    The guy through the doorway is easy as is one of the two guys at the refridgerator.
    But as soon as one of those two guys crosses the other, a 30 minute edit just became an hour of pain and suffering, or more, to edit each and every frame individually. If you are practiced at it, then fine. Otherwise, plan to devote an hour per frame for the first few frames.
    Also, when you shoot the scene, you must, I repeat, MUST have your lighting under control. No sunshine, no stars, no Moon, nothing external coming in anywhere. Otherwise, if your lighting changes, you will spend a LOT of time fixing it, and it still won't be perfect.
    One other thing. Your tripod has to be very sturdy and locked down absolutely tight. The slightest movement will completely ruin the scene.
    However, with proper lighting, a steady tripod, and an actor/actress who hits their marks and never crosses over the boundaries between characters, it is a pretty easy job to get two, three, or even more instances done in just a few minutes.

  • How do i create a chart that will update in keynotes or pages from numbers?

    I created a table in Numbers and want to export it to Pages and Keynote. I want the changes made in Numbers to Show in Pages and Keynotes.

    Hi edwill,
    In iWork, I don't know of a way to link between documents. If you are looking for a way to update a Pages or Keynote document automatically when you update a Numbers document, I don't think that is possible. Perhaps someone who is an AppleScript guru can call in to help you.
    Regards,
    Ian.

  • How do you create a link to a pdf in Muse? Thought it was going to show that with Katie's menu and can"t find in any of the tutorials.

    How do you create a link to a pdf in Muse? Thought it was going to show that with Katie's menu and can't find in any of the tutorials.

    The steps would be :
    - Add files from file menu > select pdf > add to site
    - Select the content (rectangle,text etc) and click on hyperlink dropdown > it should show you the added files list
    - Select the file you want to link
    Thanks,
    Sanjit

Maybe you are looking for

  • Web.xml  Why?

    I have heard that it is better practice to write out servlet locations and such in a web.xml file for deployment. I am currently running WSAS 5.0. I have not done so. I simply use the directory structure and the location of these servlets takes care

  • How to hide standard Iviews in MSS employee profile service

    Hi , I am on MSS Add on 1.0 . when I click on Team then employee infomration then employee profile. I can see details of employee. How to hide additional information like salary data , compensation information, apprisal which is part of standard deli

  • Weblogic 8.1 Oracle prepared statement error

    I've got WLS 8.1SP1 running on Mac OS X (10.2.6, JDK 1.4.1) using the Oracle Thin driver to connect to a 9.2.0.1 db on WinXP. When I run a unit test that uses an XA connection, I get the error below (inside a much larger stack trace). I'm not getting

  • Multiple NOT-IN selection from within Forms 6i

    I have a form, in which the user can put several varchar2 IDs (es. 'A0', 'B3', 'CJ',...). Then, I have to execute a query like this: INSERT INTO FOO SELECT * FROM BAR WHERE ID NOT IN (...values put by the user...) - The list of the user values has an

  • Blurry images in chrome

    I've set simple animation where image changes size from small to large. Image is clipped in a div. Image looks VERY blurry and pixelated in chrome (IE and Firefox are OK). Why is this happening?