When you want to view the contents of a dictionary object in the VBA locals window, it turns out you just can’t. It shows the Dictionary Items collection with the item number and key contents, but not the value.
In order to see what’s in the dictionary, you need to access it directly in the VBA Immediate window.
Here is a Stack Overflow article about this:
It has a handy one liner you can cut and paste in the Immediate Windows updating it with your dictionary variable name to print out the contents of a simple dictionary:
And here is a function from the article to print out a nice list of simple elements with nested dictionaries supported as well: