2
votes
2answers
118 views

For each cell in a range, if a value in a seperate range is found in the next cell do stuff

This Macro I have built works but I am hoping for a faster version or a Formula that will do the same in less time. What I Have: For Each cell In Range("Table_Query_1[[#Data],[Reason2]]") ...
2
votes
4answers
2k views

Excel VBA Calculate Method not update Array Formulas; showing as #N/A

I have a series of array formulas in Excel that key off of each other. These are automatically resized to fit a range of data that is generated via a proprietary Excel add-in. However, whenever my ...
3
votes
3answers
335 views

Is there a programmatic interface to Excel's Array Formulae?

For example, suppose I have {={1,2,3,4,5}} in a cell. Is there any way to find out how many elements are in that array, and what those elements are? Now implementing @chris neilsen's idea, I've ...
0
votes
1answer
135 views

Pushing 2-d Variant data into FormulaArray

I originally had a VBA function that returned a two dimensional variant array: Public Function SplitIntoCells(some_data As String) As Variant() End Function I used the Formula array syntax to call ...
2
votes
3answers
5k views

Set ArrayFormula to many Excel cells using VBA

I have an array formula that outputs a single value, and I want to give a whole bunch of cells this same array formula. The problem is when I assign the array formula to the range, it interprets the ...
4
votes
1answer
1k views

find all array formulas in an excel worksheet

is there a way to find all array formulas in a given excel spreadsheet?
2
votes
4answers
3k views

Calculate Moving Average in Excel

I want to calculate a moving average of the last, say 20, numbers of a column. A problem is that some of the cells of the column may be empty, they should be ignored. Example: A 175 154 188 145 155 ...