1
vote
1answer
25 views

Passing a row range to Excel User Define Function and assign it to an array

I am trying to pass two ranges - multiple column single row - to a user defined function in Excel 2007, then assigning it to an array for processing. Function MAE(actualData As Range, forecastData ...
0
votes
1answer
28 views

LBound(Name) To UBound(Name) Usage for Multiple Arrays

I would like to know if some one could help me with my script. It works perfectly for one array, but I have 19 different arrays to insert, each with about 10 different 8 digit serial numbers. I want ...
0
votes
2answers
45 views

Trying to write array to range of cells

Here's the gist what I'm doing. I have a ribbon button which needs to read a simple 2 column CSV file into a 1-dimensional array row-by-row, and then I need to write the array into the first two ...
0
votes
2answers
56 views

Adding to an array in VBA with strings as the index

Not sure I've labelled this correctly. I have a bunch of cells containing strings of data. Each cell consists of something like this: q1 = 1 | q2 = 3.2 | q3 = 5.6 q1 = 1.8 | q3 = 2.1 | q5 = 1.4 ...
0
votes
1answer
54 views

Subscript out of range error on a VBA procedure with Ranges and Arrays

I have written the following VBA Code to calculate some threshold value, and at one point I place values from a Range into an array. However, I get a "Subscript out of range" error though I think I ...
0
votes
1answer
43 views

Will not display in list box VB

So, I'm trying to display the statistics for a soccer teams points scored. At the time this is being executed, the arrays have been already filled and what not. When this form opens, I'd like it to ...
0
votes
1answer
41 views

Populating an array with values that fall below the averange and calculating the variance

I am trying to select those values from a one-dimensional range of data that fall below the average. Would this code be right? I think there is a problem with how I place them into the array ...
0
votes
1answer
21 views

Array Concatenate text and variable

I'd like to create an array as follows: Dim vHdr As Variant vHdr = Array("Jogo", "Sala", "Operadora", "Semana", "NSemana", "Acumulado Semana 3") However, in "Acumulado Semana 3", the 3 is a ...
1
vote
2answers
71 views

loop through rows and copy a range of values of that row to an array

My problem while using VBA is trying to create a loop that copies a range of cells from a range of rows. The loop has to copy a range of cells from the same row and worksheet to an array. This worked ...
0
votes
1answer
37 views

Invalid Procedure Call Error when Calling on a chart procedure

Would anyone guess why I am getting a "Run Time Error 5: Invalid Procedure Call or Parameter? The graph works allright, it's just that I get this error and I would like to get rid of it. Option ...
0
votes
1answer
32 views

Saving individual arrays from a loop in VBA

So I have an array x(i,j) which is inside a loop k = 1 to n, where n is set by the user. It updates every time I go to the next k. I was wondering if it's possible to save each of the arrays created ...
0
votes
1answer
39 views

Calling on a VBA procedure that generates a chart using ARRAY data

So, I have created an array, and I am trying to put the data into a chart... but I have no clue how to make the chart take on the data from an array I generated, rather than from a range. I coded for ...
1
vote
1answer
32 views

Returning unique strings from two arrays of strings, concatenated in one string VBA

I have a code that is close to working but not quite. I have two arrays astrArray1 and astrArray2 and the function findUniques() is supposed to return the unique strings(names) among the two arrays. I ...
0
votes
2answers
77 views

Function call on left hand side of the assignment must return Variant or Object, finding common values in two arrays

I've got two arrays and I'm trying to pull out the common values in them and the function findUniques is supposed to return the strings (they're names) concatenated and separated by a comma. I think ...
0
votes
1answer
110 views

Can't cumulate the sum of array elements with VBA

I'm trying to cumulate the sums of values in an excel column of 4 values dimension (4,1). So, I constructed the code below. For the first row in a column on the side Result, it is supposed to hold ...
0
votes
2answers
104 views

VBA function to return array from string input

I wrote a function to do some basic string parsing but for reasons currently unknown to me, my compiler keeps flagging my code for a type mismatch error. The function takes a string, replaces some ...
1
vote
1answer
54 views

Applying an IF.. Then on an array in VBA

Is it possible to apply an IF .. Then on an array in VBA? I have the following code and I am applying For Each and If on the array plaga - to count the number of occurrences for each Interval , ...
1
vote
1answer
21 views

Sorting procedure doesn't work

I'm trying to sort a column of 7 values starting in cell A40, and ending in A46. I am using a bubble sort and I create two procedure. However, when I execute, VBA tells me the subscript is out of ...
-1
votes
1answer
17 views

VBA modifying inside array

I am sure this is a very simple question but what's the best way to multiply everything in an array with say 100, or take square root of everything inside an array, without copying it or a for loop? ...
0
votes
2answers
72 views

multi line value in MsgBox [duplicate]

how can I retreive the values stored in vSum variable multi line in one msgbox insted of retrive in multi msgbox one after one Dim rSEL, rSUM, rDes As DAO.Recordset Dim vItem_id, vQnty, vSum As ...
-1
votes
2answers
62 views

Display multiple validation messages to the user

In MS-Access, how can I store the rows retrieved from my SELECT statement in an array, and show many rows in one messagebox: Dim rSEL, rSUM, rDes As DAO.Recordset Dim vItem_id, vQnty, vSum As Integer ...
3
votes
1answer
141 views

Passing a range to Excel User Defined Function and assigning it to an array

I am trying to pass two ranges - multiple rows single column - to a user defined function in Excel 2007, then assign it to an array for processing. Can anybody tell me how to assign such range ...
-2
votes
4answers
57 views

excel return values from a column into multiple

Been trying for a few days can't figure it out. Been looking at countif arrays still can't seem to figure it out or if its even possible without using vba. I'm a novice at VBA. attached is a sample. ...
2
votes
0answers
122 views

2-DRange -> Array -> 2D-Range with UDF Excel 2007 VBA

I'm trying to create a UDF that has 2D-Range as the input, resizes it, adjusts one of its values and has new 2D-Range as output. It is important to have Range as output since ranges will be used it ...
1
vote
1answer
131 views

Use VBA to get Unique values for use within VBA?

I currently would use something like this either with Range, Cells or the like many different ways same basic principle. Range("A1", Range("A1").End(xlDown)).AdvancedFilter Action:=xlFilterCopy, _ ...
0
votes
2answers
56 views

Pasting array values and pasting normally

I've been having issues with this VBA program today, it has been working great for a couple of days and now its kicking up a stink. I hav.nt changed anything that I am aware of to cause this problem ...
0
votes
2answers
49 views

VBA arrays and Operators

I am trying to write a couple lines of code in VBA for excel, here is what the VB.Net version of the code looks like. ThisVariable <<= 8 Variable.Add(ThisVariable) How do ...
1
vote
0answers
132 views

VBA code, run time error 9 subscript out of range

can someone help me to understand why i get a runtime error 9 (subscript out of range) from my code? Dim prod(1 To 6) As String prod(1) = "001" prod(2) = "002" prod(3) = "003" prod(4) = ...
-1
votes
1answer
78 views

fixed-length dynamic array [closed]

I am kinda new to VBA, and I cannot figure out how to implement a rolling computation. Here's an example of my data: A C D E F ...
0
votes
0answers
103 views

Quick VBA: Compare in Array or Sheet [closed]

I have TWO huge entries of data in a table of 52 columns. I need to compare one column of the TWO data, and then based on the result I will retrieve 7 columns out of the 52. I am just wondering, is it ...
1
vote
2answers
89 views

Bilding 3x3 array from cells vba

I have got a row with 9 cells, such as 1,2,3,4,5,6,7,8,9 I want to build a 3x3 matrix such as, for later do some operation with it 1,2,3 4,5,6 7,8,9 I have tried the following ...
1
vote
2answers
139 views

Excel VBA Extract Specified Start & Length from Txt file

I have a code for Excel 2007 that runs without failing. But it is extremely & unusually slow - making my computer unresponsive for the 1-2 minutes it runs. The files are about 14,000 kb's - so ...
0
votes
1answer
99 views

looping in 3d array access vba not returning all results

I have a project with 4 scheduled payments associated with 4 "contract" dates, stored in tblPaySch However, sometimes we receive the payments (stored in tblTrans), in different amounts on different ...
1
vote
1answer
118 views

vba arrays manipulation hard coding syntax [duplicate]

hard coding array manipulation in c based languages is common, like below: int i[] = new i[2][2]; i = {{1,1},{2,2}}; how it could be done in vba scripts?
3
votes
1answer
174 views

Sending array data from excel VBA to WCF

My problem is, I want to send an array of strings from VBA to WCF. c# code is : [OperationContract] void SetSomeObjects(string[] data); Here is the VBA Part Dim data(2) As String data(0) = ...
0
votes
3answers
104 views

How can I delete leading spaces from each Excel cell?

Assume the following Excel sheet: | A --+----- 1 |foo bar 2 | bar baz 3 | baz 4 | bam I need a way to automatically delete all leading spaces: | A --+----- 1 |foo bar 2 |bar baz 3 |baz 4 ...
0
votes
0answers
116 views

Excel VBA Array does not populate

I have a sheet with large amounts of info that I am building an array out of. The sheet looks like this: The array is built in a function that is called by a sub and passes the array. When I run ...
1
vote
3answers
302 views

Using one or two dimensional arrays in Excel VBA

I have a couple of basic questions about using arrays in VBA, which I have not found the answer to. Firstly, is there a way to specify a one dimensional row vector in Excel VBA? I am new to ...
-1
votes
2answers
423 views

Using an array as an active list with unique values in VBA for Excel data

I am trying to figure out how I can use VBA to create an array from Excel data as an active list that can have unique entries added and removed automatically as my script runs through a loop. ...
1
vote
0answers
239 views

Creating, Populating, and Deleting Entries in an Array or Dictionary using VBA for Excel

I am new to VBA, but I have spent ample time searching for a bit of code to help solve my situation which is as follows: For simplicity I will illustrate what I am trying to accomplish with an ...
2
votes
3answers
2k views

Excel VBA - Pass a Row of Cell Values to an Array and then Paste that Array to a Relative Reference of Cells

Using Excel (2010) VBA, I am trying to copy (pass) a constant range of cells (whose values recalculate) to an array. Then I am trying to pass that array to a new range of cells, directly below it. ...
1
vote
2answers
187 views

Permutating an array in VBA to compute the Shapley-Shubik power index (Solved)

I think this is my first question in this forum, so excuse me if I miss following some rules. I am trying to write a VBA algorithm to compute the Shapley-Shubik index. This index requires to compute ...
0
votes
2answers
52 views

Binary Search (Spline application)

I have been trying to implement a binary search on a sorted array of data with an application for cubic spline interpolation. I am unable to get it to function on all the range. For instance, search ...
0
votes
2answers
262 views

excel vba how to change array content by referencing array name

I am trying to make change to the array named arraySrc in the following manner: Dim arraySrc(0 To 1) As Integer arraySrc(0) = 1 arraySrc(1) = 2 Dim arrayTmp arrayTmp = arraySrc arrayTmp(0) = 0 ...
2
votes
1answer
338 views

Dynamically appending an array in VBA

I want to append an array with a number depending on the condition of various variables. Here is the code I've come up with: I begin with an empty array. Sub makeArr() Dim myArr() As Integer If box1 ...
0
votes
1answer
753 views

Excel find & replace cell contents based on contents of a list in another sheet [duplicate]

Possible Duplicate: Excel clear cells based on contents of a list in another sheet On Excel clear cells based on contents of a list in another sheet bonCodigo helped me with a VBA macro ...
0
votes
2answers
1k views

VBA Multidimensional Arrays

Is there a way to do the following in VBA? Initialize a multidimensional array and fill it with a series of numbers, 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Then remove some ...
0
votes
0answers
209 views

VBA dictionary does not retrieve item (type mismatch)

I am using a dictionary to store an array or range (array in this case; I tried a range before and that didn't work either). dictionary.Exist returns true for the keys, however when you call ...
0
votes
3answers
178 views

How to choose a random element from an array in Visual Basic

I have created an array of Integer and want to choose a random element from it. How do I do that?
1
vote
2answers
465 views

Excel clear cells based on contents of a list in another sheet

I have an excel Sheet1 of a thousand of rows and 20 columns from A1 to T1. Each cell in that range has some data in it, usually one or two words. In Sheet2, A1 column I have a list of data of 1000 ...

1 2 3 4 5