User Tools

Site Tools


microsoft_excel:macro_count_binary

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
microsoft_excel:macro_count_binary [2020/07/15 09:30] – external edit 127.0.0.1microsoft_excel:macro_count_binary [2021/08/04 14:06] (current) – removed peter
Line 1: Line 1:
-====== Microsoft Excel - Macro Count Binary ====== 
- 
-<code excel> 
-' Binary Count of array. 
-' Returns the number of vCrit found within the array oArrWithCrit. 
-Function ArrayCountIf(oArrWithCrit As Variant, vCrit As Variant) 
-    Dim low As Long 
-    low = LBound(oArrWithCrit) 
-    Dim high As Long 
-    high = UBound(oArrWithCrit) 
-    Dim i As Long 
-    Dim J As Long 
-    Dim result As Boolean 
-     
-    ArrayCountIf = 0 
-     
-    Do While low <= high 
-        i = (low + high) / 2 
-        If vCrit = oArrWithCrit(i, 1) Then 
-            ArrayCountIf = ArrayCountIf + 1 
-            ' Now that found run sequentially while same value 
-            J = i - 1 
-            i = i + 1 
-             
-            Do While (i <= high) 
-                If vCrit = oArrWithCrit(i, 1) Then 
-                    ArrayCountIf = ArrayCountIf + 1 
-                    i = i + 1 
-                Else 
-                  Exit Do 
-                End If 
-            Loop 
-             
-            Do While (J >= low) 
-                If vCrit = oArrWithCrit(J, 1) Then 
-                    ArrayCountIf = ArrayCountIf + 1 
-                    J = J - 1 
-                Else 
-                  Exit Do 
-                End If 
-            Loop 
-             
-            Exit Do 
-        ElseIf vCrit < oArrWithCrit(i, 1) Then 
-            high = (i - 1) 
-        Else 
-            low = (i + 1) 
-        End If 
-    Loop 
-     
-End Function 
-</code> 
  
microsoft_excel/macro_count_binary.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki