Hi all,
I have searched high-and-low with no luck, so I am hoping somone might be able to help here. I have a cube with a dimension called "price" and a dimension called "# of products." In Analyzer (v4.8), how can I allow the user to set a filter, saying, for instance, "only count products where the price is between $5 and $15." I know I can create buckets via the schema, but I want the user to define what he/she is interested in.
+---------+------+
| Product | Price |
+---------+------+
| ProdA | $10 |
| ProdB | $12 |
| ProdC | $50 |
+---------+------+
Default Result
Ideal Result
I have searched high-and-low with no luck, so I am hoping somone might be able to help here. I have a cube with a dimension called "price" and a dimension called "# of products." In Analyzer (v4.8), how can I allow the user to set a filter, saying, for instance, "only count products where the price is between $5 and $15." I know I can create buckets via the schema, but I want the user to define what he/she is interested in.
+---------+------+
| Product | Price |
+---------+------+
| ProdA | $10 |
| ProdB | $12 |
| ProdC | $50 |
+---------+------+
Default Result
Price | # of Products |
$10 | 1 |
$12 | 1 |
$50 | 1 |
Ideal Result
Price | # of Products |
User Defined Price ($5-$15) | 2 |