Hello,

First, I would like to say that you have an excellent product here. It's poised to make our lives much easier at my job. I do have a question: are there any plans in the near future to support more complex filters, such as nested "or" conditions? Especially cross-dimension?

Thanks in advance

asked 17 Apr '12, 09:46

ryanjfink's gravatar image

ryanjfink
1111
accept rate: 0%


just for the sake of documentation i'll answer it here as well:

Are you familiar with OLAP? It works set based, that means such a filtering isn't that easily possible

your filter would look like that in MDX:

SELECT ........
WHERE
Union(
    [Gender].[M] * [Customer].[All States]
,   [Gender].[All Gender] * [Customer].[Texas])

Which is a bit different than people are used to SQL etc. I have plans to support that at some point, but there are so many things i need to do first :/ Usually people would want to include only data for Male AND Texas, which is much easier to do than such an OR based join. (would be something like:

WHERE (Gender.M, Customer.Texas) )

You can file a feature request and keep track of it that way.

link

answered 17 Apr '12, 10:10

pstoellberger's gravatar image

pstoellberger ♦♦
2.5k211
accept rate: 8%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×20
×18
×11

Asked: 17 Apr '12, 09:46

Seen: 365 times

Last updated: 17 Apr '12, 10:10

powered by OSQA