Convert Dictionary Early to Late Binding

tiredofit

Well-known Member
Joined
Apr 11, 2013
Messages
1,834
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
The code below work in early binding:

Code:
    Dim DIC As Scripting.Dictionary
    'Dim DIC As Object
    
    Set DIC = New Scripting.Dictionary
    'Set DIC = CreateObject("Scripting.Dictionary")
    
    Dim MyArray() As Variant
     
    MyArray() = Sheet1.Cells(1, 1).CurrentRegion.Value
    
    Dim n As Long
    
    For n = 1 To UBound(MyArray(), 1)
        
        DIC.Item(MyArray(n, 1)) = 0
        
    Next n
    
    Dim KeysArray() As Variant
    
    KeysArray() = DIC.Keys
    
    Dim NumKeys As Long
    
    NumKeys = DIC.Count
    
    Dim ElementsArray() As Variant
    ReDim ElementsArray(1 To DIC.Count, 1 To 1) As Variant
    
    Dim DataRng As Range
    Set DataRng = Sheet1.Range(Sheet1.Cells(2, 1), Sheet1.Cells(Module1.LRow(wks:=Sheet1), 1))
    
    Dim Counter As Long
    
    For Counter = 1 To DIC.Count - 1
    
        ElementsArray(Counter + 1, 1) = Application.WorksheetFunction.CountIf(DataRng, DIC.Keys(Counter))
       
    Next Counter

but when I convert it to late binding, it fails here:

Code:
ElementsArray(Counter + 1, 1) = Application.WorksheetFunction.CountIf(DataRng, DIC.Keys(Counter)

What do I have to do to fix it?

Thanks
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Try
Code:
ElementsArray(Counter + 1, 1) = Application.WorksheetFunction.CountIf(DataRng, DIC.Keys()(Counter))
 
Upvote 0
Try
Code:
ElementsArray(Counter + 1, 1) = Application.WorksheetFunction.CountIf(DataRng, DIC.Keys()(Counter))

Thanks, I recall something like that sometime ago.

Why must add the brackets for late binding?
 
Last edited:
Upvote 0
I don't know, I just know that it works.
 
Upvote 0
Keys doesn't actually take an index, so really it's stranger that the early bound one works at all. I suspect that with early binding the compiler is smart enough to realise that it returns an array and internally converts it to the late bound syntax in the P-code. With late binding, it doesn't know at compile time that an array is returned so just executes the literal instruction which, correctly, fails.
 
Upvote 0
Keys doesn't actually take an index, so really it's stranger that the early bound one works at all. I suspect that with early binding the compiler is smart enough to realise that it returns an array and internally converts it to the late bound syntax in the P-code. With late binding, it doesn't know at compile time that an array is returned so just executes the literal instruction which, correctly, fails.

Thanks
 
Upvote 0

Forum statistics

Threads
1,215,373
Messages
6,124,544
Members
449,169
Latest member
mm424

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