Calling a Dictionary Value

SLogue

New Member
Joined
Jun 3, 2016
Messages
5
Hi All,

I'm having some troubles calling the value in a dictionary, I assume it's a simple syntax issue so hopefully someone will be able to educate me easily enough.

I'm also not 100% sure that a dictionary is the best/easiest way to go about doing what I'm doing, so I'm open to alternative options.

So what I'm trying to do is build a database with a list of parts measured, and work out how many are built into assemblies and how many parts remain unused. The problem is I can sometimes use the same part into multiple assemblies, but it's still only using 1 measured part from stock.

So the first thing I do is work out all the unique numbers that are built into modules, say for example it's [101 103 101 104]. I use a dictionary to list all the unique values [101 103 104].

Then lets say I've got 5 measured parts in stock, [101 102 103 104 105]. What I was trying to do was create a loop that went through each of the parts built (in the dictionary) and compare to the measured list.
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Hia
Is this the sort of thing you're after
Code:
    Set ShtDict = CreateObject("scripting.dictionary")
    With ShtDict
        For Each Sht In Sheets
            If Not .exists(Sht.Name) Then .Add Sht.Name, Nothing
        Next Sht
        
            i = 1
        For Each ky In .keys
            Sheets(ky).Tab.ColorIndex = i
            i = i + 1
        Next ky
    End With
 
Upvote 0

Forum statistics

Threads
1,215,329
Messages
6,124,302
Members
449,150
Latest member
NyDarR

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