The array-formulas tag has no wiki summary.
2
votes
2answers
176 views
How to use Excel's array-formulas for a UDF to read each cell correctly?
G'Day,
I have a question more towards helping myself understand how Excel's array-formulas (Control+Shift+Enter) can read each cell dynamically into the formula.
I made an simplified example to ...
2
votes
3answers
318 views
Is there any documentation of the behavior of built-in Excel functions called with array arguments?
Many of Excel's built-in functions can take array arguments. Sometimes the result is documented in the help and sometimes not. So:
=IF({1,0,1}, 42, 99)
will return {42, 99, 42}. The help for 'IF' ...
8
votes
3answers
45k views
Find first non-empty cell in a spreadsheet row [closed]
I've got a fairly simple Excel spreadsheet with many rows of data. Each row contains empty and non-empty cells.
Is there a simple way to determine the column letter/number of the cell in each row ...
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
...
2
votes
2answers
110 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
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 ...
1
vote
2answers
203 views
MaxIf with associated row info?
Im using array formulas to determine the maximum value of a specific subset of row data:
=MAX(($A2:$A100="somestring")*($C2:$C100))
This works fine & gets me the maximum value in C where A = ...