Alex -
Is there any way to allow users to create their own calculated *filters* on the dimension items. Users want the ability to do something like "show me only the top 10 customers from my sales cube." The actual uses for this would be endless.
I thought something similar to the caluculated measure editor in the dimention manager could allow for this:
User clicks on a "Calculated Dimension Filter" button and then in a similar manner as the calculated measure manager, they could build something like this in their dimension filters:
begin
Result = ([Customer][Sales][RANK] >= 10)
end
The internal code would then use the above formula to do something like what you have in the demo code for "Hideing All Rows w/Less than 3% of Total" programatically.
Can this be done now (aside from filtering the SQL)? Do you think something like this could be added in the future?
Thoughts?