VBA Dictionary - Type mismatch for Items

Mallesh23

Well-known Member
Joined
Feb 4, 2009
Messages
976
Office Version
  1. 2010
Platform
  1. Windows
Hi Team,

Getting TypeMismatch error while extracting dictionary items value into Cells.
Whats wrong here unable to identify. plz assist. Thanks

VBA Code:
Sub Dict()

Dim Dict As New Scripting.Dictionary

    Dict.Add "Fruits", Array("Apple", "Banana", "Mango")
    
    Cells(1, 1).Value = Dict.Item("FRUITS")(0)
    Cells(1, 2).Value = Dict.Item("FRUITS")(1)
    Cells(1, 3).Value = Dict.Item("FRUITS")(2)

End Sub

Thanks
mg
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
VBA is case sensitive, so either use Dict.Item("Fruits")(0) or set the dictionary to use textcompareDict.CompareMode = 1
 
Upvote 0
Hi Fluff,

Thank you so much for your help. perfect it worked !(y)


Thanks
mg
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,545
Members
449,089
Latest member
davidcom

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