Counting concurrent items formula

ctownballer03

New Member
Joined
Sep 7, 2017
Messages
4
Hi,

I have a rather sizable table w/ data (~60 columns, ~5000 rows) each w/ 1s and 0s. I would like to count the number of 1s that occur concurrently in each column. So each column is a unique variable, and each row is a day in a time series, and I'd essentially like to be able to count the number of days in a row that we have 1s in each column. Essentially I would like another table that says, if you are 0 respond w/ 0, and then for every concurrent 1, respond 1 for the first one, 2 for the second, 3 for the third, and so on until another zero pops up and then go back to 0 and start the count over again once you get your next count. The tricky part for me is that there's no pattern to the 1s and zeros and hence no defined range that I can consistently use for some sort of sum/count iteration.

The below is an example of the mapping that I'm looking for essentially, but its a very large table that could possibly have 1000 1s in a row in some of the columns so no manual process will really work.


Thanks so much for your help!


1
->1

12
13
00
00
11
00
11
00
00
00
00
11
12
13
14

<tbody>
</tbody>
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
B1 has its own formula. Copy the formula in B2 down.
Excel Workbook
AB
100
211
300
400
511
612
700
800
911
1000
1100
1200
1311
1412
1513
1600
1700
1800
1900
2000
2111
2200
2300
2411
2500
2600
2700
2811
2912
3013
Sheet4
 
Upvote 0
Looks like Tetra201 beat you to it Rick. :cool:
That's why I deleted my post (his post wasn't visible until after I posted my code, then the browser refresh showed me Tetra201's post at that point).
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,576
Members
449,173
Latest member
Kon123

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