Hey,
I have a query set up like this: (comes from internal table "Monthly_Returns")
Code:
CompanyName.....Return.....NAV....drawdown
aaa............-0.829......91.71.....xxx (Ignore)
aaa............0.0908.....100.79...Start
aaa............0.001.......100.89
aaa............0.051.......105.99
aaa............0.0666.....112.65
aaa...........-0.0029....125.39
aaa...........-0.0921....125.10
aaa...........-0.0628....115.89
aaa...........-0.0457....109.61
bbb...........-0.0021....99.79....xxx (Ignore)
bbb...........-0.0021....99.58....Start Again
bbb...........-0.0021....99.37
bbb...........-0.0018....99.19
bbb...........-0.0017....99.02
bbb............0.0554.....104.56
bbb...........-0.0514....99.42
The Drawdown formula would be this in excel:
first aaa Is cell A2
=(A3/Max(A$2$:A2))-1
My question is how would you reference the starting point, and for each drawdown value you continue to have you Max list selection growing by one:S
Also, i need it to start over for each Company Name:S
thanks in advance,