Iteratively Get Array Position Index and Update Array Value

jleco

New Member
Joined
Oct 5, 2016
Messages
3
Hi I am trying to create a program in VBA where I have an Array A and I am trying to Iteratevely find the minimum value in the array, get its position in the array and next update its value to an arbitrary large number (say 9999).

The code I have come up with so far is something like this
For j = 0 To Len(A)​


MinValue = Application.WorksheetFunction.Min(A)
ArrayPos = Application.WorksheetFunction.Match(MinValue, A, 0)
A(ArrayPos) = 9999
Next j​

However the Variable ArrayPos which is the index of the position in the array never seems to get updated after the first iteration.

Does any body have any ideas what can be the problem?

Thanks in advance
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Welcome to the forum!

See if this helps.
Code:
'If array is 0 based, 1 is returned if aValue matches anArray(0).
Function PosInArray(aValue, anArray)
  Dim pos As Long
  On Error Resume Next
  pos = -1
  pos = WorksheetFunction.Match(CStr(aValue), anArray, 0)
  PosInArray = pos
End Function
 
Upvote 0
Hi I am trying to create a program in VBA where I have an Array A and I am trying to Iteratevely find the minimum value in the array, get its position in the array and next update its value to an arbitrary large number (say 9999).

The code I have come up with so far is something like this
For j = 0 To Len(A)


MinValue = Application.WorksheetFunction.Min(A)
ArrayPos = Application.WorksheetFunction.Match(MinValue, A, 0)
A(ArrayPos - 1) = 9999
Next j​

However the Variable ArrayPos which is the index of the position in the array never seems to get updated after the first iteration.

Does any body have any ideas what can be the problem?
First off, did you mean UBound(A) in place of what I highlighted in Green above?

Since you are starting your loop at 0, can I assume your array is a normal one-dimensional VB array and not a two-dimensional variant array that was assigned from a range? If so, then I think you need to subtract one from the ArrayPos as shown in red above because I am pretty sure the Match function assumes the first element of the array is index 1 whereas the VB array numbers it starting element as 0 (assuming Option Index 1 is not in effect) which would mean you are changing the wrong element (hence the minimum value never changes).
 
Upvote 0
Thank you, I didn't know the index properties of the match function. That's what I needed to get sorted
 
Upvote 0

Forum statistics

Threads
1,215,745
Messages
6,126,634
Members
449,323
Latest member
Smarti1

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