So I have a column with this data
1
1
1
2
3
4
5
5
5
How can I do a count if where the value at any given location in the above table is equal to a cell I select? i.e. doing Count([NUMBER]) Where([NUMBER] = Coordinates(0,0))
would return 3, because there are 3 rows where the value is one in the 0 position.
It's basically like in excel where you can do COUNTIF(A:A, 1)
and it would give you the total number of rows where the value in A:A
is 1. Is this possible to do in business objects web intelligence?