Tagged Questions
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]]")
...
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
1answer
199 views
Sumproduct formula returns a #VALUE! error when the last array refers to a column with formulas in every row. MS Excel 2010
I am trying to find an easy way to calculate commissions off of sales on multiple sheets within a workbook. Each month, I need to find the total net profit for only items sold within the specified ...
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
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 ...