What will be MDX query equivalent to:
select * from tableName where somecount > num1 and somecount < num2?
somecount
is a dimension in my case (not a dimension).
As far as I have understood, WHERE
Clause in MDX Queries doesn't support less than or greater than operation. somecount
in my case is Timestamp
. Since I want to aggregate data on parameters passed by user (can be aggregated yesterday, last 7 days, last 15 days, last month etc). So, precomputing the timestamp and storing it as Year-Month-Day-Time won't help.