Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
I was wondering if anyone could help me with a minimum payment calculation on my spreadsheet for my Credit card I have the following Cells Credit Limit (L2) £4300 Credit Card Amount Owed (L4) £3300 Minimum Amount (L6) 2% And then I have a cell (L8) Minimum Payment and it is in this Cell I want it to say what my minimum payment will be if you could help with this that would be great Regards Joel Amount Owed (L6) £3000 -- N/A |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Enter the following in cell L8 =round(L4*.02,2)
Aqib Rizvi |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi thans for your help
I left out a bit of information so here goes; Hi I was wondering if anyone could help me with a minimum payment calculation on my spreadsheet for my Credit card I have the following Cells Credit Limit (L2) £3500 Credit Card Amount Owed (L4) £3200 Credit Card APR (L6) 17.9% Minimum Amount (L8) 2% And then I have a cell (L10) Minimum Payment and it is in this Cell I want it to say what my minimum payment will be if you could help with this that would be great Regards Joel -- N/A "Aqib Rizvi" wrote: Enter the following in cell L8 =round(L4*.02,2) Aqib Rizvi |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Well, your starting point is to think about which items of data are
relevant, and to think about how you would do the calculation by hand (or with a calculator). Once you have decided what calculation you need Excel to do for you, finding the way of doing it is normally the easy part. -- David Biddulph "Joel" wrote in message ... Hi I was wondering if anyone could help me with a minimum payment calculation on my spreadsheet for my Credit card I have the following Cells Credit Limit (L2) £4300 Credit Card Amount Owed (L4) £3300 Minimum Amount (L6) 2% And then I have a cell (L8) Minimum Payment and it is in this Cell I want it to say what my minimum payment will be if you could help with this that would be great Regards Joel Amount Owed (L6) £3000 -- N/A |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thats the problem i am not sure how to calculate it
-- N/A "David Biddulph" wrote: Well, your starting point is to think about which items of data are relevant, and to think about how you would do the calculation by hand (or with a calculator). Once you have decided what calculation you need Excel to do for you, finding the way of doing it is normally the easy part. -- David Biddulph "Joel" wrote in message ... Hi I was wondering if anyone could help me with a minimum payment calculation on my spreadsheet for my Credit card I have the following Cells Credit Limit (L2) £4300 Credit Card Amount Owed (L4) £3300 Minimum Amount (L6) 2% And then I have a cell (L8) Minimum Payment and it is in this Cell I want it to say what my minimum payment will be if you could help with this that would be great Regards Joel Amount Owed (L6) £3000 -- N/A |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=MIN(ROUND(L4*L8,2),L10) "Joel" wrote in message ... Hi thans for your help I left out a bit of information so here goes; Hi I was wondering if anyone could help me with a minimum payment calculation on my spreadsheet for my Credit card I have the following Cells Credit Limit (L2) £3500 Credit Card Amount Owed (L4) £3200 Credit Card APR (L6) 17.9% Minimum Amount (L8) 2% And then I have a cell (L10) Minimum Payment and it is in this Cell I want it to say what my minimum payment will be if you could help with this that would be great Regards Joel -- N/A "Aqib Rizvi" wrote: Enter the following in cell L8 =round(L4*.02,2) Aqib Rizvi |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sorry! That should have been
=MAX(ROUND(L4*L8,2),L10) "Stephen" <none wrote in message ... Try this: =MIN(ROUND(L4*L8,2),L10) "Joel" wrote in message ... Hi thans for your help I left out a bit of information so here goes; Hi I was wondering if anyone could help me with a minimum payment calculation on my spreadsheet for my Credit card I have the following Cells Credit Limit (L2) £3500 Credit Card Amount Owed (L4) £3200 Credit Card APR (L6) 17.9% Minimum Amount (L8) 2% And then I have a cell (L10) Minimum Payment and it is in this Cell I want it to say what my minimum payment will be if you could help with this that would be great Regards Joel -- N/A "Aqib Rizvi" wrote: Enter the following in cell L8 =round(L4*.02,2) Aqib Rizvi |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
So if you don't know what the question is, you shouldn't be looking at Excel
for an answer. Perhaps you could look at the terms and conditions of your credit card account, or (as I said earlier), think about which of the supplied parameters is likely to be relevant. Another course worth pursuing is to look at your credit card bill and see what value they have calculated, and see how that compares with what you might interpret from the defined conditions and the input data. Note also that you have supplied us with conflicting information, in that there are two things which you've told us are in L6. -- David Biddulph "Joel" wrote in message ... Thats the problem i am not sure how to calculate it -- N/A "David Biddulph" wrote: Well, your starting point is to think about which items of data are relevant, and to think about how you would do the calculation by hand (or with a calculator). Once you have decided what calculation you need Excel to do for you, finding the way of doing it is normally the easy part. -- David Biddulph "Joel" wrote in message ... Hi I was wondering if anyone could help me with a minimum payment calculation on my spreadsheet for my Credit card I have the following Cells Credit Limit (L2) £4300 Credit Card Amount Owed (L4) £3300 Minimum Amount (L6) 2% And then I have a cell (L8) Minimum Payment and it is in this Cell I want it to say what my minimum payment will be if you could help with this that would be great Regards Joel Amount Owed (L6) £3000 -- N/A |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi that did not work stephen I think the Cell reference maybe wrong
-- N/A "Stephen" wrote: Try this: =MIN(ROUND(L4*L8,2),L10) "Joel" wrote in message ... Hi thans for your help I left out a bit of information so here goes; Hi I was wondering if anyone could help me with a minimum payment calculation on my spreadsheet for my Credit card I have the following Cells Credit Limit (L2) £3500 Credit Card Amount Owed (L4) £3200 Credit Card APR (L6) 17.9% Minimum Amount (L8) 2% And then I have a cell (L10) Minimum Payment and it is in this Cell I want it to say what my minimum payment will be if you could help with this that would be great Regards Joel -- N/A "Aqib Rizvi" wrote: Enter the following in cell L8 =round(L4*.02,2) Aqib Rizvi |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Nov 16, 5:24 am, Joel wrote:
I was wondering if anyone could help me with a minimum payment calculation on my spreadsheet for my Credit card I have the following Cells Credit Limit (L2) £3500 Credit Card Amount Owed (L4) £3200 Credit Card APR (L6) 17.9% Minimum Amount (L8) 2% And then I have a cell (L10) Minimum Payment and it is in this Cell I want it to say what my minimum payment will be If we assume (probably incorrectly; see below) that Minimum Payment (L10) is simply the Minimum Percentage (L8) of the Amount Owed (L4), then: =roundup(L8*L4, 2) And that might be good enough for a classroom assignment. But in real life, you need to consult your credit card agreement to see how the minimum payment is determined. Here is what mine says: If the Amount Owed is $10 or less, the Minimum Payment due is the Amount Owed. Otherwise, the Minimum Payment due is the largest of the following: $10; 2% of the Amount Owed; or the sum of 1% of the Amount Owed, plus the total billed finance charges, plus the total billed late fees. The might be implemented as follows: =if(L4<=10, L4, roundup(max(10, L4*L10, L12*L4 + L14 + L16), 2) ) where I have added L12 (1%), L14 (finance charges), and L16 (late fees). L14 and L16 come from your periodic statement. You might approximate L14 by L4*L6/12, if you make monthly payments. But the periodic finance charges might be computed in a far more complex manner. In my case, the monthly finance charge is the sum of the daily finance charges. The daily finance charge is the daily balance times the daily rate, which is L6/365 in my case. Since the daily finance charge is added to each daily balance, the daily finance charge is compounded. Of the course, the daily balance depends on your spending pattern. But the monthly finance charge might be estimated FV(L6/365, 365/12, -L4*12/365, 0, 1) - L4. Beware that that might underestimate the monthly finance charge if credits tend to occur more toward the beginning of the month. The most pessimistic estimate of monthly finance charges in my case might be L4*(L6/365)^(365/12). (Actually, the __most__ pessimistic estimate is L4*(L6/365)^31.) Obviously, it is easier to simply take the finance charge from the statement. |
#11
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Errata... (Sigh, this has been a bad morning for my posting.)
On Nov 16, 8:33 am, I wrote: The most pessimistic estimate of monthly finance charges in my case might be L4*(L6/365)^(365/12). (Actually, the __most__ pessimistic estimate is L4*(L6/365)^31.) Those formulas should be: L4 * (1 + L6/365)^(365/12) - L4 L4 * (1 + L6/365)^31 - L4 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Credit Card form | Excel Discussion (Misc queries) | |||
Credit Card Number | Excel Worksheet Functions | |||
Credit Card # | Setting up and Configuration of Excel | |||
How long will it take to pay off my credit card | Excel Discussion (Misc queries) | |||
credit card formatting | Excel Discussion (Misc queries) |