Need Help with Running Percentage!!

Gillisj

New Member
Joined
Jul 19, 2012
Messages
3
abcde
1#of tradestotal trades madewonlostwon/lost running percentage
21110
31210
42411
51501
62720
70700
81810

<tbody>
</tbody>



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
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
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

Forum statistics

Threads
1,215,947
Messages
6,127,867
Members
449,410
Latest member
adunn_23

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