Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a macro that uses the DCOUNTA formula repeatedly with a routine that
copies the results into a summary spreadsheet (not a very elegant solution.) I am trying build a replacement that does not require me to visually show the copying. Here is my question: Is there a way to define the Criteria Array in the formula itself instead of in a range on a spreadsheet? Something like... =DCOUNTA('database'!A:H,1,{"Country","China","Stat us","Complete"}) The problem is that I do not know how to specify the two dimensions of this array. I tried specifying the individual cells of a 2x2 array in a macro, but I get a "data type mismatch" error. Dim criteria(1, 1) As String criteria(0, 0) = """Country""" criteria(0, 1) = """Mid-year Status""" criteria(1, 0) = """China""" criteria(1, 1) = """Complete""" ActiveCell.Value = WS.Evaluate("=DCOUNTA('database'!A:H,1," & criteria & ")") Ideas? Thank you. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
popup message if certain criteria met in formula result | Excel Worksheet Functions | |||
Average Formula with Criteria | Excel Discussion (Misc queries) | |||
IF & VLOOKUP FORMULA | Excel Worksheet Functions | |||
Countif formula with multiple criteria ie >30 and <60? | Excel Worksheet Functions | |||
Cell doesn't show formula result - it shows formula (CTRL + ' doe. | Excel Worksheet Functions |