vba hep - dictionary items to store blank blank value as well

Mallesh23

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

I am getting type mismatch error.

I am storing multiple values into dictionary items. if no values items should be blank.

shown expected output screenshot.


VBA Code:
Sub Dict_Testing()

A = 10
B = 20
C = 30


Dim dict As New Scripting.Dictionary

dict.RemoveAll
dict.Add "x", Array(A, B, C)
dict.Add "y", Array(A)
'dict.Add "y", Array(a, b, c) ' this line works.


Range("a2").Resize(dict.Count, 3).Value = Application.Index(dict.Items, 0, 0)


End Sub



Expected Output
VBA_FORM.xlsm
ABC
1ABC
2102030
310
Sheet2



Thanks
mg
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
How about
VBA Code:
dict.Add "y", Array(A, "", "")
dict.Add "z", Array("", "", c)
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,213,490
Messages
6,113,956
Members
448,535
Latest member
alrossman

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