Executing the query ...
The 'Color' hierarchy appears more than once in the tuple.
Execution complete
The issue is with using more than once slices from same dimension in
where clause e.g. ([Product].[Color].&[Black],[Product].[Color].&
[Red])
I have to use more than one slices from same dimension. But the MDX is
failing with error, please suggest how to acheive this?
Best Regards,
Rupesh
If you only want to aggregate them, you can simply change ([Product].
[Color].&[Black],[Product].[Color].&[Red]) to be {[Product].[Color].&
[Black],[Product].[Color].&[Red]}.
Thanks a lot. It really helped!
Best Regards,
Rupesh