I'm trying to mimic this Excel-type behavior:
| A | B |
1 | failureType | numFailuresThisType |
2 | f1 | =countif($a$2:$a$999,a2) |
3 | f2 | =countif($a$2:$a$999,a3) |
4 | f1 | =countif($a$2:$a$999,a4) |
5 | f1 | =countif($a$2:$a$999,a5) |
6 | f2 | =countif($a$2:$a$999,a6) |
... | ... | ... |
... in JMP. Is this possible as a column formula?
I've tried "Col Sum( :failureType == :failureType[ Row() ] )" but that doesn't work and I don't understand why. Sometimes ":ColumnName" returns a single value, and other times it returns the entire column's-worth of entries and auto-loops over them. Is there a way to tell which it will do, perhaps from the Scripting Index?