Need Help with Running Percentage!!

Gillisj

New Member
Joined
Jul 19, 2012
Messages
3
[TABLE="class: grid, align: left"]
<tbody>[TR]
[TD][/TD]
[TD]a[/TD]
[TD]b[/TD]
[TD]c[/TD]
[TD]d[/TD]
[TD]e[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]#of trades[/TD]
[TD]total trades made[/TD]
[TD]won[/TD]
[TD]lost[/TD]
[TD]won/lost running percentage[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]1[/TD]
[TD]1[/TD]
[TD]1[/TD]
[TD]0[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]1[/TD]
[TD]0[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]2[/TD]
[TD]4[/TD]
[TD]1[/TD]
[TD]1[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]1[/TD]
[TD]5[/TD]
[TD]0[/TD]
[TD]1[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]2[/TD]
[TD]7[/TD]
[TD]2[/TD]
[TD]0[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]0[/TD]
[TD]7[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]1[/TD]
[TD]8[/TD]
[TD]1[/TD]
[TD]0[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]



Thank you for your help first off. I am a day trader and I am trying to get my log together with all of this data.

Here is what I have so far formula wise.
Total Trades = b2+a3

What I need is a running won/lost percentage formula that omits cells where I dont trade that day for example row 7.

Any help would be much appreciated as I am totally lost on this right now
 
Hi,

Perhaps like this (although I'm not sure this is exactly what you want in column E):
Excel Workbook
ABCDE
1#of tradestotal trades madewonlostwon/lost running percentage
21110100%
31210100%
4241175%
5150160%
6272071%
70700
8181075%
Sheet1
Excel 2010
Cell Formulas
RangeFormula
B2=SUM(A$2:A2)
E2=IF(A2=0,"",SUM(C$2:C2)/B2)
 
Upvote 0
How about this?
=SUMIF($C$2:C2,">0",$C$2:C2)/SUMIF($C$2:D2,">0",$C$2:D2)
 
Upvote 0

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