Simple formula maybe over thinking.

dallash

New Member
Joined
Apr 10, 2020
Messages
9
Office Version
  1. 365
Platform
  1. Windows
I am trying to build a Spreadsheet to track an investment between my father and I. The investment is in stock so I want to be able to just enter the current stock prices and have it calculate the rest. Basically he has given me $5000 to start which is a 0% interest loan, but it is the first money out. Everything over $5000 gets split 50/50. I know that this is not complicated but for the life of me I can't wrap my mind around structuring it. I want to leave room for further investments, maybe that where I am over thinking it. Does anyone have any suggestions?

Thank you,

Dallas
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
whats the results from the stock look like and what are you entering ?

5000
Stock Quantity
So if the stock was 500 each then you would have 10 shares

A2 = 5000 in one cell
B2 = Number of Shares
C2 = Share price
D2 =C2 * B2. (Current Value)
E2 = D2 - 5000 (Total Return)
F2 = E2 / 2. ( Return Each )
 
Upvote 0
Hi Etaf,

I really think I was over thinking it. I started by creating a transaction ledger but it really doesn't require that, this is more than enough. Thank you so much.
 
Upvote 0
you are welcome
you could just add new stock in rows 3,4,etc

And in say CELL A1 or say G1
you could just enter SUM(E2:E100) , which shows the value from all investments and the Return for EACH of you
 
Upvote 0
Hi Etaf,

I really think I was over thinking it. I started by creating a transaction ledger but it really doesn't require that, this is more than enough. Thank you so much.
Hi Etaf,

So the way I have it now, It should show $0 for me and $5000 for my dad. Instead it is -$2500 of me and $2500 for him. Here is what I ended up using for him & I

Him =5000+(G4-5000)/2

Me =(G4-5000)/2

I would also like to show if the investment dips below $5000, his would remain, but I would go negative. Is there an easy way to do that?
 
Upvote 0
you are welcome
you could just add new stock in rows 3,4,etc

And in say CELL A1 or say G1
you could just enter SUM(E2:E100) , which shows the value from all investments and the Return for EACH of you
Hi Etaf,

So the way I have it now, It should show $0 for me and $5000 for my dad. Instead it is -$2500 of me and $2500 for him. Here is what I ended up using for him & I

Him =5000+(G4-5000)/2

Me =(G4-5000)/2

I would also like to show if the investment dips below $5000, his would remain, but I would go negative. Is there an easy way to do that?
 
Upvote 0
not 100% sure i follow exactly

5000
If PLUS return , then thats 5000 / 2 + return /2 each
SO that would show for each person
2500 + whatever return

BUT if the return is negative then you want your share to show zero
and for your Dad to instead of showing
2500 + whatever return
you want it to show
5000 minus the FULL negative Return

for example
lets say it increases by 100
then will show
DAD = 2500 + 50 = 2550
YOU = 2500 + 50 = 2550
for each person

If it goes down by 100 - so total now 5000 - 100 = 4900
you want it to show
DAD = 5000 - 100 = 4900
YOU = 0

is that correct ?

I suspect and IF() will do that
 
Upvote 0
not 100% sure i follow exactly

5000
If PLUS return , then thats 5000 / 2 + return /2 each
SO that would show for each person
2500 + whatever return

BUT if the return is negative then you want your share to show zero
and for your Dad to instead of showing
2500 + whatever return
you want it to show
5000 minus the FULL negative Return

for example
lets say it increases by 100
then will show
DAD = 2500 + 50 = 2550
YOU = 2500 + 50 = 2550
for each person

If it goes down by 100 - so total now 5000 - 100 = 4900
you want it to show
DAD = 5000 - 100 = 4900
YOU = 0

is that correct ?

I suspect and IF() will do that
Its actually reverse of that. He gets the $5000 no matter what so if I lose money, its negative for me but a minimum of $5000 for him.

So to use the same example

lets say it increases by 100
then will show
DAD = 5000 + 50 = 5050
YOU = 50 = 50
for each person

If it goes down by 100 - so total now 5000 - 100 = 4900
you want it to show
DAD = 5000
YOU = -$100

Does that make sense?
 
Upvote 0
A2 = 5000 in one cell
B2 = Number of Shares
C2 = Share price
D2 =C2 * B2. (Current Value) - 6000
E2 = D2 - A2 (Total Return) = -1000
F2 = YOU = IF( D2 <= A2 , E2 , E2/2 )
G2 = DAD = IF ( D2 <= A2 , A2 , (A2 + (E2/2) ) )

Heres a sample sheet - USING XL2BB Add-in
So you can copy into a spreadsheet

Just need an idea of how other investments would work , if this does what you need

I'll also add to dropbox, but only for a short while

Book1
ABCDEFG
1Initial LoanNo. Shares Current PriceCurrent ValueReturnDADYOU
25000100055000050000
3500010001010000500075002500
4500010005.555005005250250
5500010005.15100100505050
6500010004.94900-1005000-100
75000100011000-40005000-4000
Sheet2
Cell Formulas
RangeFormula
D2:D7D2=B2*C2
E2:E7E2=D2-A2
F2:F7F2=IF(D2<=A2,A2,(A2+(E2/2)))
G2:G7G2= IF( D2 <= A2, E2, E2/2 )
 
Upvote 0
Ok, had a play with the spreadsheet, so now - just the ONE cell for DAD & YOU
and works out multiple investments
Sheet2 example will work out upto 10 investments


Investment - ETAF.xlsx
ABCDEFGHI
1InvestmentInitial LoanInitial Shares PriceNo. Shares Current PriceCurrent ValueReturnDADYOU
2InVest 15000100501015050508000-130
3InVest 22000120001.01202020
4InVest 31000101008800-200
5InVest 4000
6InVest 5000
7InVest 6000
8InVest 7000
9InVest 8000
10InVest 9000
11InVest 10000
Sheet2
Cell Formulas
RangeFormula
F2:F11F2=D2*E2
G2:G11G2=F2-B2
H2H2=IF(SUM(F2:F10)<=SUM(B2:B10),SUM(B2:B10),(SUM(B2:B10)+(SUM(G2:G10)/2)))
I2I2= IF( SUM(F2:F10)<=SUM(B2:B10), SUM(G2:G10), SUM(G2:G10)/2 )
D2:D11D2=IF(B2=0,0,B2/C2)
 
Upvote 0

Forum statistics

Threads
1,216,159
Messages
6,129,210
Members
449,493
Latest member
JablesFTW

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top