Users often want to be able to filter on high cardinality dimensions such as ISIN or counterpartyID.
Is there a way to use such dimensions as slicers but block them for being used in rows / columns ?
Best regards,
Christophe
Users often want to be able to filter on high cardinality dimensions such as ISIN or counterpartyID.
Is there a way to use such dimensions as slicers but block them for being used in rows / columns ?
Best regards,
Christophe
You can easily do it with the MDX-based web client interface ActivePivot Live.
To do so, you need to extend the class
OlapEntityToWizardExpressionConverterand rebind the interfaceIOlapEntityToWizardExpressionConverterto your custom class through GIN (GWT INjection). Easily doable (only one line of code):Then in your class, simply override the
visit(final Hierarchy hierarchy)method:Users won't be able to put the dimension on an axis anymore.