Basic Array Question VBA

JumboCactuar

Well-known Member
Joined
Nov 16, 2016
Messages
785
Office Version
  1. 365
Platform
  1. Windows
Hi,
im currently trying to learn about VBA arrays so if you know any good learning resources i would appreciate it.

With the following below, how can i store or update the values assigned to an IDNO in an array and make it available to other modules.

56dc63347f.png


So if:
Range("B3") = 7
and
Range("C3") = 2171

this gets stored, or updated if 7 is already in array

then entering 7 in Range("B9") and running the macro should output the stored value for IDNO: 7

Appreciate any help
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
I give you an example.

You must first run the macro "Test_Update_Array" to load the data into memory in the array.
Then run the macro "Test_Display_Array".

Code:
Dim dict As Scripting.Dictionary   'Global variable at the beginning of all code


Sub [COLOR=#0000ff]Test_Update_Array[/COLOR]()
  Set dict = CreateObject("scripting.dictionary")
  If Not dict.Exists(Range("B3").Value) Then
    dict.add Key:=Range("B3").Value, Item:=Range("C3").Value
  End If
End Sub


Sub [COLOR=#008000]Test_Display_Array[/COLOR]()
  Dim wDat As Variant
  If dict.Exists(Range("B9").Value) Then
    wDat = dict(Range("B9").Value)
    Range("C9").Value = wDat
  End If
End Sub
 
Upvote 0
Thankyou @DanteAmor I will try this

Though I thought I could do something like:

Code:
Dim IdNumber(999) 'store up to 1000 values
i = Range("B3").value

IdNumber(i) = Range("C3").value
 
Upvote 0
Thankyou @DanteAmor I will try this

Though I thought I could do something like:

Code:
Dim IdNumber(999) 'store up to 1000 values
i = Range("B3").value

IdNumber(i) = Range("C3").value

There are several ways to store arrangements, I just gave you an example.
 
Upvote 0
Another example ussing Collection:

Code:
Dim idNumber As New Collection
Sub Example2()
  Set idNumber = Nothing
  idNumber.add Item:=Range("C3").Value, Key:=Range("B3").Text
 End Sub


Sub Dspy_example2()
  [C9] = idNumber.Item(Range("B9").Text)
End Sub
 
Upvote 0
Example 3

Code:
Dim arr()
Sub array_3()
  Dim n As Long
  n = Range("B3")
  ReDim arr(n)
  arr(n) = Range("C3")
End Sub


Sub display_3()
  [C9] = arr(Range("B9"))
End Sub
 
Upvote 0
Thanks @DanteAmor
Example 3 seems to be on the right track

instead of Redim arr(n)
i used Sub array_3(1000)

as if the range("B9") isnt found in the array it throws an error

is there any problem with setting the array size that high?

------------------------------------------

Next im trying to figure how to store IDNO, then a sum of values for the IDNO

like:
105e60384a.png


with output:
7921a5412f.png


If i understand correctly this needs a 2D array but im unsure how to loop and store for each IDNO
 
Upvote 0
What is the goal?
What you need to do, maybe an array is not necessary.

Example 4

Code:
Sub ex4()
  Dim a(), i As Long
  a = Range("A2:C" & Range("A" & Rows.Count).End(xlUp).Row)
  For i = LBound(a) To UBound(a)
    MsgBox "COL A" & vbTab & "COL B" & vbTab & "COL C" & vbCr & _
          a(i, 1) & vbTab & a(i, 2) & vbTab & a(i, 3)
  Next
End Sub
 
Upvote 0
What is the goal?
What you need to do, maybe an array is not necessary.

Example 4

Code:
Sub ex4()
  Dim a(), i As Long
  a = Range("A2:C" & Range("A" & Rows.Count).End(xlUp).Row)
  For i = LBound(a) To UBound(a)
    MsgBox "COL A" & vbTab & "COL B" & vbTab & "COL C" & vbCr & _
          a(i, 1) & vbTab & a(i, 2) & vbTab & a(i, 3)
  Next
End Sub

Thanks
The goal is to store each unique IDNO, along with their name and a TOTAL of their values
 
Upvote 0
Thanks
The goal is to store each unique IDNO, along with their name and a TOTAL of their values

Ok, you want to store them, but what do you want to store them for, what are you going to use them for?
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,395
Members
449,081
Latest member
JAMES KECULAH

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