Numbers Loan Calculator Template interesting question

Hi all,
if you note the Loan Calculator program has a Form for inputting data.
However you can only change a few values and the other fields are 'locked'.
How can you unlock those fields?
How can I add another field into the form without it being visible in the corresponding sheet?
Thank you for your advice

Welcome to Apple Discussions
And if you are asking about the desktop version of Numbers, please post your question in the appropriate sub-forum in the Numbers forum category.

Similar Messages

  • Numbers: How do I add a new "Term" with all the formulas included to the GPA calculator template?

    I'm new to Numbers, and I am using the GPA calculator template. This includes 4 "terms" but I need 8. I have tried adding a new table but the formulas aren't included. How do I go about adding 4 new terms?

    Click on one of the four tables that represent Terms and click on the little circle that is in the very top left of the table, this will highlight the entire table.  Copy the table and paste a new one.  Relabel the table Term 5.
    In the GPA by term table, click in the cell that says Term 4, and add a new row; you can do this by holding Alt and pressing the down arrow.  Label the new cell Term 5, and in cell A6 and put the formula =Term 5::C6 and in B6 put the formula =Term 5::D6.
    Repeat for every term that you need.

  • Is there a free loan calculator that I can put on my iweb site

    Does anyone know of a free loan calculator that I can embed in my iweb site? I need a simple interest loan calculator where you can choose different terms, rates & amount financed.
    Thanks.

    777 Development group has something similar, contact them:
    http://www.777developmentgroup.com/Benifits.html

  • Calculation of Interest on Security Deposits Maintained with Vendors

    Hi Friends,
    We have some problem on Line Item Interest calculation.
    We want to calculate Interest on Security Deposits(Spl GL) given to Vendors.
    There is no Interest on Normal Items.
    When we run Interest (f.47) it not calculating on cleared items eventhough we select interest for all items.
    Example:
    We paid Deposit on 01.01.2007 an amount of $10000
    We recieved back total amount of Deposit($10000) on 15.02.2007
    and when we run interest run (f.47) its not calculating any interest.
    But we want to calculate interest for the period  the deposit outstanding i.e. from 01.01.2007 to 14.02.2007.
    Can any one help us in this regards,
    Thanks in Advance,
    Purnachandra RM
    null

    Hi
    You may like to check the config from the below angles :
    1) interest payment is produced if the credit interest (because of interest calculated on items paid before the due date) is greater than the debit interest.
    2) Calculate interest on items paid before due date
    Indicator which means that credit interest is calculated for items paid prior to their due date, provided that the item paid was not subject to a cash discount. Interest is calculated using credit interest rates.
    Note
    The system calculates credit interest only on those clearing transactions where all payments were made before the due date. If you do not select this option for those transactions then the items are ignored.
    This option has no effect in the case of clearing transactions where payments are made both before and after the due date. For transactions such as these, interest is always calculated on the basis of debit interest.
    For partial payments and down payment offsetting items that are made before the due date of the invoice, interest is calculated from the document date if this indicator is set. If it is not set, interest is calculated from the due date of the invoice.
    3) Calculate Interest as of Due Date for Net Payment
    Indicator which means that interest is calculated as of the due date for net payment; otherwise, you pay interest as of the settlement period lower limit (if the due date for net payment is before it) or as of the date of the last (according to the master record) interest caluclation (if the corresponding parameter is set).
    Regards
    S

  • Numbers (or Pages) Template Cannot Be Opened From Outside the Application

    Ever since the upgrade to Mavericks, I cannot open a Numbers (or Pages) template without being asked.....
    Do you want to add this custom template to the Template Chooser?  Then my only options are Cancel or Add to Template Chooser.
    If I cancel, it won't open anything.
    But this template is already in my Template Chooser.
    So the only way to open a template in Numbers (or Pages) is to open the application first, and then click "New", and choose the template.
    I can't figure out a way to open the template from outside the application, which is very very handy, rather than having to open the application every time that I want to access a template.
    How can I open a template simply by clicking on it?

    Yes, the problem is that opening the template from outside of the application will not open the application, showing the document.  I only get this....
    Do you want to add this custom template to the Template Chooser?  Then my only options are Cancel or Add to Template Chooser.
    If I cancel, it won't open anything. 
    But this template is already in my Template Chooser.
    Put your Pages or Numbers document on your desktop and open it by double-clicking it, and you'll understand.  You can't do it, even if the template is in your template chooser.
    The only way to do this now is to open the application, select "New", and the select the template.  So you cannot open a template from outside the application....only from within.

  • Trying to make a pop up message for a loan calculator

    Yes this is very basic, but I am very basic. I am using the init() method, and paint() method "classes" as applet to make a loan calculator. I have the calculating all done, and correct, but if someone puts in a nonreal number, or an amount they want to take in less than 0 I want the pop up message tell them they are crazy. How would I create a message popup? The code below is the full code for my loan calculator.
    * Programmer: Carl Finch
    * Program: The Bank of America Loan Calculator(not affiliated with Bank of * America just a goof)
    * Date: 01/12/05
    * Purpose: Learn the paint() function, action performed function, and
    * all their "special methods"
    import java.awt.*;
    import java.awt.event.*;
    import java.text.*;
    import java.applet.*;
    public class Loan extends Applet implements ActionListener
    // Declare the vars
    TextField txtAmo;
    TextField txtRat;
    TextField txtMon;
    TextField txtPay;
    Button btnCal;
    public void init()
    //set the layout of the textfields, layouts, and the big o butotn.
    setLayout(null);
    txtAmo = new TextField (25);
    txtRat = new TextField(5);
    txtMon = new TextField(6);
    txtPay = new TextField(8);
    btnCal = new Button("Calculate");
    txtAmo.setBounds(145,25,80,30);
    txtRat.setBounds(145,65,80,30);
    txtMon.setBounds(145,105,80,30);
    txtPay.setBounds(145,145,80,30);
    btnCal.setBounds(145,200,80,30);
    //add all to applet
    add(txtAmo);
    add(txtRat);
    add(txtMon);
    add(txtPay);
    add(btnCal);
    btnCal.addActionListener(this);
    //Create graphics for the applet
    public void paint(Graphics g)
    // simple text displayed on applet
    g.setColor(Color.white);
    g.fillRect(0, 0, 500, 500);
    g.setColor(Color.blue);
    g.drawString("Bank of America Loan Calculator", 145, 20);
    g.setColor(Color.blue);
    g.drawString("Loan Amount",30,35);
    g.drawString("APR (%)", 30,75);
    g.drawString("Months to Repay",30,115);
    g.drawString("Monthly Payment:",30,155);
    //Adding image method
    Image money;
    money = getImage(getDocumentBase(), "money.jpg");
    g.drawImage(money, 300,50, this);
    //Action Performed
    public void actionPerformed(ActionEvent ae)
    //Declaring the vars needed.
    //try
    DecimalFormat money = new DecimalFormat("$#.00");
    double a = Double.valueOf(txtAmo.getText()).doubleValue();
    double r = Double.valueOf(txtRat.getText()).doubleValue();
    int m = Integer.parseInt(txtMon.getText().trim());
    r=r/1200;
    //The math of the monthly payment
    double p=a*r/(1-Math.pow(1/(1+r),m));
    txtPay.setText(""+money.format(p));
    /*catch(ArithmeticException error)
    //Find option for java.awt
    //Adding some error messages for the technology inleterates.
    Sorry I had to display the code, but I don't know how to do attachements

    javax.swing.JOptionPane.showMessageDialog(null, "Message here");

  • Customizing loan calculations

    Hi.
    How can I change loan calculations?Is there any Schema to do that? Should I utilize ABAP codes and programmers to do that?
    Best regards

    Hi,
    Generic schema for Loan is XLON and you need to place custom PCR after P0045 unction once you have your custom calculation in PCR ready.
    Thanks,
    Ameet

  • I downloaded bundle for ms office only to realise its just a template.my questions are can i be refunded and how can i get the right msoffice because am in need of it badly

    i downloaded bundle for ms office only to realise its just a template.my questions are can i be refunded and how can i get the right msoffice because am in need of it badly

    You can request a Mac App Store refund at reportaproblem.apple.com
    You can buy Microsoft Office at office.microsoft.com

  • Numbers "Employee Schedule" template question

    In the "employee work schedule" template, one of the formulas is deducting a certain amount of time for lunch. I can adjust the time taken out ok (i.e. from one hour down to 30 minutes) - but I only want a lunch deduction taken on shifts of 6 hours or greater. Any ideas?

    Replace the formula
    =IF(OR(C4="",C5=""),"",IFERROR(C5-C4-Administration Information :: $B$1,""))
    with
    =IF(OR(C4="",C5=""),"",IFERROR(C5-C4-IF(DUR2HOURS(C5-C4)>=6,Administration Information :: $B$1,DURATION(0)),""))
    Basically you are adding an IF statement that says "if the time difference is less than 6 hours then don't subtract a lunch break". Put this in C6 and drag/copy it to the other cells in the row.
    There are some other changes you might want to make to this template. It has some problems that arise when it is edited. A search of the forum should lead you to those posts.
    Message was edited by: Badunit

  • Inquiry on Interest Calculation using Interest on Arrears for Accounts Rece

    Question:How can we calculate interest on the number of days from the document date, but only start selecting the item for interest after the item is past due?
    Scenario:
         Document date - March 18th
         Due date - April 2nd
    Desired results:
    1) When running interest at the end of march the invoice will not be selected (as it is not past due)
    2) When running interest at the end of April, Interest should be assessed for 12 days for March and 30 days for April (if past due, interest is calculated from the original document date and not the past due date).
    Attempt:
    In config I tried to set up the Interest Indicator (in Prepare Item Interest Calculation) to have Ref Date as Document Date, but the calculation still returns only 19 days for April (using due date).
    Does SAP support this business requirement?
    Thank you,
    Rachel

    Hi,
    Please make use of the event 2010-Interest: Exclude Items.
    Here all the line items on the account are passed one by one and records which are eligible for interest calculations are retained and rest are excluded by RAISE item_blocked.
    You can put the check in this event on the amount.
    Regards,
    Gaurav.

  • Loan Management or Interest Rate Instrument

    Hi all,
    My company will implement SAP FSCM to manage our loan management, borrowing and lending.
    Which one better and has more values between Loan management with product type 33A and 33B, or interest rate instrument with product type 55A and 55B.
    Beside that, we also want to use TRM Facility.
    Can anyone give me advice?
    Thanks before..
    Regards,
    _fita

    Hi,
    Functionality wise Loans management gives better control and functionality generating interest based cash flows from SAP CML but you can not assign a loan contract to any TRM facility transaction and genrate Facility utilization.
    In case of TRM Product Category 550 functionality Loan borrowing and lending is possible with assignment of Facility and interest conditions are limited to single against a transaction for a calculation period which is not in case of SAP CML products.
    Regards
    Prasad AV

  • ABAP HR: User exit or BADI for company loan calculation

    hi All,
    I need to calculate the company loan repayments in a different way (which is out of the standard), Please let me know which customer exit or BAPI can make this possible.
    Scenario:
    Principal Amt = Rs. 10,000
    Interest rate = 8%
    Yearly Interest = 10,000 * 8% = 800
    Monthly Interest = (10,000 * 8%)/ 12 (months) = Rs. 66.67
    Now, if an Employee is asking for a 6 month period to pay-off the loan then the calculation will be :-
    Principal Instalment = Rs. 10,000 / 6 (months) = Rs. 1667
    Interest Instalment = Rs. 66.67 * 6 = Rs. 400
    Total Instalment to be paid each month = Rs. 1667 + Rs. 400 = Rs. 2067.
    Thanks in Advance
    Amol

    Thanks for your answers.
    I need to make validations for send error messages and i can not use FI Validations and Sustitutions because i send several differents messages  and wuold need N steps (one step for each message).
    The enhancement points called in CHANGE_TO_MODIFY are executed when ok-code is 'CHAE' that is when the user calls FB03 and then change to modify mode for make changes like if he goes to FB02 , but these enhancements are no executed any more when the data changes are made and user press save.
    I already found some enhancement executed just before data saving (it's in FORM belegsummen_pruefen) so i make the validation and send the error message , but when error message appears the screen get protected so the user can not change any screen field for make the data corrections.
    Best Regards
    Frank

  • Customer exit or BAPI for Loan Calculation repay

    hi All,
    I need to calculate the company loan repayments in a different way (which is out of the standard), Please let me know which customer exit or BAPI can make this possible.
    Scenario:
    Principal Amt = Rs. 10,000
    Interest rate = 8%
    Yearly Interest = 10,000 * 8% = 800
    Monthly Interest = (10,000 * 8%)/ 12 (months) = Rs. 66.67
    Now, if an Employee is asking for a 6 month period to pay-off the loan then the calculation will be :-
    Principal Instalment = Rs. 10,000 / 6 (months) = Rs. 1667
    Interest Instalment = Rs. 66.67 * 6 = Rs. 400
    Total Instalment to be paid each month = Rs. 1667 + Rs. 400 = Rs. 2067.
    Thanks in Advance
    Amol
    Edited by: Amolkumar Patil on Sep 17, 2010 11:38 AM

    Check the table V_506P_B with Interval option.
    If you are using payment type Loan Pament( Payroll)...check the table V_506P_B ..if you select Interval...... If you set this indicator for a payment type, the system also shows the column End Date in the Loans infotype (0045) on the Payments tab page. For the payment that you have specified with this payment type, this field End Date is ready for input. This means you can specify a start and end date for these payments. Within this interval system processes such a payment in each payroll period in the standard system.
    Mohan

  • Page numbering in rtf templates

    Hi All,
    I have an rtf template and what I want is to display page numbers. I can achieve this with the following : <?fo:page-number?> but I want to display it by different way:
    For example if the total pages in the output is 10 pages I want the page number to be displayed as Page 1 of 10, 2 of 10, 3 of 10 etc.
    Any ideas?
    Thanks in advance,
    Konska tor

    Well, it's fixed itself. It still doesn't work on my home computer, but it does work on my work computer... as long as it works in Oracle eBus I'm happy :) Must be a certain version of word that causes the problem.

  • Closed Auto Loan Reporting As Open Question

    I have an auto loan reporting across all bureaus as open but in good standing. I suppose that is well and good except for the fact that the loan was closed in Dec of last year. My question...would having the loan shown as open reduce my credit score or do you think it's helping? I've heard having a loan of that nature close can reduce your score so I'm not sure what to do about it. Any input is appreciated. Thanks!

    Well, see whether you get any other feedback from other folks on here.  But if I were you, I'd just end up having some low grade anxiety if I had a record on my report that claimed I owed a big chunk of money for something I didn't.  The explanation, I assume, is that the creditor never updated the record to show that you paid off the loan. Unless someone here tells you differently, I'd reach out to the lender and confirm with them that they agree that you paid off the loan in December.  If they do agree, explain that they haven't yet updated the final status of the account to show that you paid it off -- and ask them to do that.  That way you'll end up with an accurate report that shows future creditors that you can manage and pay off a car loan. I have allowed incorrect data to stay on my report when it is absolutely 100% positive.  This is a bit of a mixed bag: a record that falsely asserts you still owe a creditor a good chunk of change.  Whetever benefit you get out of it being "open" doesn't seem worth it to me.  But see what other people say.

Maybe you are looking for

  • Syncing apps from one account to another

    I am using a new itunes account how to get old apps from my first account to sync to new account so it uses new account when i want to update them?? please help

  • Open word or excel full screen not embedded

    Im new to SAP and Solution manager so this question might be a little stupid. I searched the forum for an answer to this question and I couldn't find it. So my question is when we view or edit word and excel docs in solution manager can we have it op

  • Sync doesn't completely transfer browsing history information

    Here's some context of the question. I'm the developer of [https://addons.mozilla.org/en-US/firefox/addon/fromwheretowhere/ FromWhereToWhere] , an addon that can display browsing history in Firefox in threaded view, which takes advantage of the part

  • Script for deleting objects on pasteboard

    Anyone have a script that deletes all objects and text outside the page (or margins)?

  • How to use xliff as resource bundle ?

    I used to do Java i18n as following base on resource bundle in properties file format: Locale myLocale = new Locale("es", "ES"); ResourceBundle bundle = ResourceBundle.getBundle("HelloResourceBundle", myLocale); System.out.println(bundle.getString("H