Tagged Questions
2
votes
2answers
117 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]]")
...
0
votes
1answer
78 views
Replacing Delimiter in MCONCAT formula
I'm using the MCONCAT formula (with success & help from others) to create a single string of multiple attachment names to associate them with a single record # (I am converting data from a legacy ...
1
vote
2answers
83 views
How to measure Excel Calculation times
For example how could I find what formula is faster?
=SUMPRODUCT((Data!D:D="RC Corp")*(Data!AD:AD="Expected Allowances / Provisions"))
Vs
=COUNTIFS(Data!D:D,"RC Corp",Data!AD:AD,"Expected ...
0
votes
2answers
52 views
Excel Formula for finding Secondest to Earlist Date in column
I have a data query in Excel that returns multiple to rows of information for a single employee. The employee are sorted by an EmployeeID, and the data contains Pay Rates and Dates.
I have sorted ...
2
votes
2answers
183 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 ...
1
vote
1answer
629 views
Array formulas and PasteSpecial:=Formats
I have this small issue in a workbook. I wanted to simply a very long function by using array formulas. The formula works well and produces the expected results. However, in my VBA macro I copy and ...
2
votes
1answer
238 views
Trouble computing Excel array formulas programmatically
I am writing values in an excel sheet using a MATLAB program. I am also writing values in cells using formulas (for e.g. the MATLAB program writes =AVERAGE(A1:A10) to a cell and this gets converted to ...
2
votes
1answer
178 views
Why do I keep getting COM exception when using FormulaArray
try
{
sheet1.get_Range("M34").FormulaArray =
...
1
vote
1answer
2k views
Excel Vlookup on multiple values combined with sum or countif
I have 4 columns of codes, and another table that basically says that "group" the code falls into. Like so:
c1 c2 c3 c4
1 0 2 3
2 3 4 5
3 4 2 0
The second table is
code group
1 ...
1
vote
2answers
2k views
Spreadsheet formula to gather all matches into one cell
I've got a spreadsheet which looks like this:
A B C D
FirstName SurnameName Address UniqueFamilyId
...
0
votes
2answers
1k views
Categorizing bank transactions in Excel
I have an exported list of bank transactions in Excel, which I'd like to categorize as quickly and simply as possible. I suspect this is possible just with array formulas, but a VBA function would be ...
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 ...
1
vote
2answers
182 views
Formulas to populate spreadsheet with data
I want to populate some cells given certain condition. The thing is, I have no idea how to do this with just formulas (can’t use macros or the sort).
Anyways, here’s my workbook, with its **sheets**:
...
1
vote
3answers
105 views
MS Excel: how can I make Max() more efficient?
I have a set of data that looks like this:
ID Value MaxByID
0 32 80
0 80 80
0 4 80
0 68 80
0 6 80
1 32 68
1 54 68
1 56 68
1 68 68
1 44 68
2 ...
5
votes
4answers
6k views
Have formula treat value as text, not numeric
I have an Excel formula reading data from a column. The data in that column is sometimes a date-like format, such as "10-11". Despite the fact that I've ensured that column is text formatted -- and ...
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
205 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 = ...
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?
1
vote
2answers
971 views
Apache POI and SUMPRODUCT formula evaluation
I have a template XLS file that I load with Apache POI and write loads of data in it, then save it as another file.
I have formulas in my XLS file like this:
...
0
votes
2answers
4k views
I need to ignore blank cells in an excel 2007 MIN array but I keep getting 0's
Here is the array I have:
{=MIN(IF('APRIL 2011'!E3:E999<>"",'APRIL 2011'!E3:E999
*('APRIL 2011'!E3:E999*('APRIL 2011'!D3:D999='APRIL TOTALS'!A2))))}
It still returns zeroes with empty ...
1
vote
2answers
139 views
Adding variable amount of values, based on numeric values
Problem Solved
Cheesy Mistake... lol
For my time column when i was using my milliseconds i was using the column in my sheet that i was not mentioning. I was using my millisecond interval column. I ...
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
...
1
vote
2answers
312 views
Optimizing multiple-criteria IFs
I'm performing array calculations that are taking a long time to complete. I'd like to optimize my formulas some more. All of the formulas are of the same nature - they perform some high-level ...
2
votes
3answers
322 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
46k 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 ...
4
votes
5answers
915 views
Trying to improve efficiency of array formula
I have a SUM array formula that has multiple nested IF statements, making it very inefficient. My formula spans over 500 rows, but here is a simple version of it:
...