Count number "0" after last "1"

Undertegnede

New Member
Joined
Oct 15, 2013
Messages
15
Office Version
  1. 365
Platform
  1. Windows
Hi,

I want to be able to count 0's after the last 1 in my spreadsheet. The number i want counted is listed in my "="-column.

Anyone able to assist please?


ABCDEFGHIJKLMNOPQR=
10010000000000000014
00000100000000000012
0010000000100000007

<tbody>
</tbody>
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Code:
Sub findlast()
With Workbooks(REF).Sheets(REF)
Dim findl as Range
Set findl = .Range("A:R").Find("1", matchcase:=True, searchorder:=xlByColumns)

If Not findl Is Nothing Then

    .Range(findl.Row, "S").Value = (18*(findl.Row-1)) - Application.Sum(.Range(.Cells(2, "A"), .Cells(findl.Row, "R"))) 'Where 18.*... is the number of cells columns (A-R) and the sum is the total of 1's

End If

End With
End Sub

Your explanation is a bit contradictory as the totals in your example don't match the values and you mention you only want to count the zeroes after you have found the last "1" (e.g. you only count once, not multiple times like in the example)
 
Last edited:
Upvote 0
Correction, use

Code:
[COLOR=#333333]Set findl = .Range("A:R")[/COLOR].Find("1", MatchCase:=True, searchorder:=xlByRows, searchdirection:=xlPrevious)
 
Last edited:
Upvote 0
Hi, do you only have 1's and 0's in the range? If so another option:


Excel 2013/2016
ABCDEFGHIJKLMNOPQRS
110010000000000000014
200000100000000000012
30010000000100000007
Sheet1
Cell Formulas
RangeFormula
S1=COLUMNS(A1:R1)-LOOKUP(2,1/(A1:R1=1),COLUMN(A1:R1)-MIN(COLUMN(A1:R1))+1)
 
Upvote 0
Hi,

Maybe I'm missing something, the last part of the Column math doesn't seem to be needed:


Book1
ABCDEFGHIJKLMNOPQRS
110010000000000000014
200000100000000000012
30010000000100000007
Sheet574
Cell Formulas
RangeFormula
S1=COLUMNS(A1:R1)-LOOKUP(2,1/(A1:R1=1),COLUMN(A1:R1))
 
Upvote 0
@jtakw

Try moving the data to some different ranges. Your version may give incorrect results, since it is dependent on the data beginning in column A. The version posted by FormR will consistently give correct results.

Regards
 
Upvote 0
Maybe I'm missing something

Thanks, I see now, without the extra Column math, the formula will only work if data started in Column A ( column 1 ) .
 
Upvote 0
Thanks for all the input. I have to admit though that with my limited knowledge about vba I was not transfer the code to use for my actual dataset.

https://1drv.ms/u/s!ArNOSClmeB5wgYsx-7fXiEqqedNECw

I have placed a picture here showing my actual dataset. Sheetname could be Sheet1. I will also be expanding the included columns as time goes by, but figure I will understand how to adjust the code to fit with the changes.

Two main questions:

- Would anyone be so kind to adjust the code to fit with my dataset? I apologize for not providing this at first.
- Would this code need to be executed, or is the thought that it would run automatically?

Thanks again!
 
Upvote 0
Thanks for all the input. I have to admit though that with my limited knowledge about vba I was not transfer the code to use for my actual dataset.

https://1drv.ms/u/s!ArNOSClmeB5wgYsx-7fXiEqqedNECw

I have placed a picture here showing my actual dataset. Sheetname could be Sheet1.
:confused: Your thread title indicates you would have zeros in the non-one cells, but your picture shows dashes instead. The following UDF (user defined function) will work as long as there is something in those cells (in other words, as long as the non-one cells are not blank)...
Code:
[table="width: 500"]
[tr]
	[td]Function CountAfterLastOne(HorizontalRange As Range) As Long
  Dim Dashes() As String
  Dashes = Split(Join(Application.Index(HorizontalRange.Value, 1, 0), ""), "1")
  CountAfterLastOne = Len(Dashes(UBound(Dashes)))
End Function[/td]
[/tr]
[/table]
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,602
Members
449,089
Latest member
Motoracer88

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