Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Excel 2002
Scenario: I want to calculate when I begin to make money on an investment. Invest $10.000, the commission to set up the fund is $900-, thus my starting point is $9100-. I want to input the current investment balance and see by percentage if I am making or loosing money. I also want to determine at what point I offset the cost of the commission and break even. My math: initial investment + commission=break even point current balance / (initial investment + comission)= percent of gain or loss IF current balance is or = to Initial Invenstment + commission THEN PRINT "you have now reached the break even point" -- Thanks, Santal |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
In D1 enter the Initial value:
$10,000.00 In C1 enter the sales commision: $900.00 In A1 the current value: =D1-C1 which will show: $9,100.00 Use the rest of column A to record the current value as time goes on. Finally in B1 enter: =IF(A1/$D$1<1,A1/$D$1,TEXT(A1/$D$1,"0.00%") & " broke even") and copy down the column. Here is a sample of what will may see: $9,100.00 91.00% $900.00 $10,000.00 $9,282.00 92.82% $9,467.64 94.68% $9,656.99 96.57% $9,850.13 98.50% $10,047.14 100.47% broke even $10,248.08 102.48% broke even $10,453.04 104.53% broke even $10,662.10 106.62% broke even $10,875.34 108.75% broke even $11,092.85 110.93% broke even $11,314.71 113.15% broke even $11,541.00 115.41% broke even $11,771.82 117.72% broke even -- Gary''s Student - gsnu200749 "Brucer" wrote: Excel 2002 Scenario: I want to calculate when I begin to make money on an investment. Invest $10.000, the commission to set up the fund is $900-, thus my starting point is $9100-. I want to input the current investment balance and see by percentage if I am making or loosing money. I also want to determine at what point I offset the cost of the commission and break even. My math: initial investment + commission=break even point current balance / (initial investment + comission)= percent of gain or loss IF current balance is or = to Initial Invenstment + commission THEN PRINT "you have now reached the break even point" -- Thanks, Santal |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thank you for your help. I appreciate you taking the time to answer my
question. -- Bruce "Gary''s Student" wrote: In D1 enter the Initial value: $10,000.00 In C1 enter the sales commision: $900.00 In A1 the current value: =D1-C1 which will show: $9,100.00 Use the rest of column A to record the current value as time goes on. Finally in B1 enter: =IF(A1/$D$1<1,A1/$D$1,TEXT(A1/$D$1,"0.00%") & " broke even") and copy down the column. Here is a sample of what will may see: $9,100.00 91.00% $900.00 $10,000.00 $9,282.00 92.82% $9,467.64 94.68% $9,656.99 96.57% $9,850.13 98.50% $10,047.14 100.47% broke even $10,248.08 102.48% broke even $10,453.04 104.53% broke even $10,662.10 106.62% broke even $10,875.34 108.75% broke even $11,092.85 110.93% broke even $11,314.71 113.15% broke even $11,541.00 115.41% broke even $11,771.82 117.72% broke even -- Gary''s Student - gsnu200749 "Brucer" wrote: Excel 2002 Scenario: I want to calculate when I begin to make money on an investment. Invest $10.000, the commission to set up the fund is $900-, thus my starting point is $9100-. I want to input the current investment balance and see by percentage if I am making or loosing money. I also want to determine at what point I offset the cost of the commission and break even. My math: initial investment + commission=break even point current balance / (initial investment + comission)= percent of gain or loss IF current balance is or = to Initial Invenstment + commission THEN PRINT "you have now reached the break even point" -- Thanks, Santal |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
pivot table creation in shared worksheet | Excel Discussion (Misc queries) | |||
Action Item Worksheet Creation | Excel Worksheet Functions | |||
Property Analysis Worksheet | Excel Discussion (Misc queries) | |||
Setting up a worksheet for LOG LOG analysis | Excel Worksheet Functions | |||
Investment analysis template | Excel Discussion (Misc queries) |