Hello,
I thought this would be simple, but I'm probably missing something small . I have a few rows of numbers, and at the leftmost cell of each row, there is a row identifier (attached XL2BB). In this example, I'm trying to get the count, average, and stddev of all the numbers that are on the rows that correspond to "A", and I was hoping to do this with formulas that do not require control+shift+enter (I'm trying to avoid control+shift+enter because on large datasets that I typically receive, they slow down the workbook). But so far anything I tried didn't work (even with control+shift+enter) :
Thanks for any input!
I thought this would be simple, but I'm probably missing something small . I have a few rows of numbers, and at the leftmost cell of each row, there is a row identifier (attached XL2BB). In this example, I'm trying to get the count, average, and stddev of all the numbers that are on the rows that correspond to "A", and I was hoping to do this with formulas that do not require control+shift+enter (I'm trying to avoid control+shift+enter because on large datasets that I typically receive, they slow down the workbook). But so far anything I tried didn't work (even with control+shift+enter) :
Cell Formulas | ||
---|---|---|
Range | Formula | |
G2 | G2 | =AVERAGE(B2,C2,D2,B4,C4,D4) |
G4:G6 | G4 | =AVERAGEIF(B2:D4,A2:A4="A") |
H4:H6 | H4 | =COUNTIF(B2:D4,A2:A4="A") |
Dynamic array formulas. |
Thanks for any input!