Check If Anything Added to Dictionary

30percent

Board Regular
Joined
May 5, 2011
Messages
123
Office Version
  1. 2016
Platform
  1. Windows
Hi,

I declared a variable as dictionary. Wonder if there is a way to check if anything been added to the dictionary.

I have the following code but it says that the dictionary is NOT EMPTY.

Code:
Sub store_Dict()



Dim Dict_curUpdate As New Dictionary


If Not Dict_curUpdate Is Nothing Then
    Debug.Print "Dictionary contains something"
End If


End Sub

Thank you!
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
It doesn't say it's not empty. It says it exists.

Try : dict_curUpdate.Count
 
Upvote 0
Note also that because you used Dim...As New... the variable will never be Nothing. It’s generally considered bad practice to do that rather than using separate Dim and Set statements.
 
Upvote 0
How about
Code:
Sub store_Dict()
   Dim Dict_curUpdate As Object
   
   Set Dict_curUpdate = CreateObject("scripting.dictionary")
   
   If Dict_curUpdate.Count <> 0 Then
       Debug.Print "Dictionary contains something"
   End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,250
Members
452,623
Latest member
Techenthusiast

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