on 2007 Feb 16 6:14 PM
Hello all,
I want to write a query in MDX returning the list of our customers buying product A AND product B.
How can help me further? I've already looked at some documentation. What I need is a coding sample.
Thanks, Nathalie
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How about something like this...
SELECT
{[Measures].[0QUANTITY]} ON AXIS(0),
{[0MATERIAL].MEMBERS, [0CUSTOMER].MEMBERS} ON AXIS(1)
FROM [<i>cubename</i>/<i>queryname</i>]
WHERE {[0MATERIAL].[A], [0MATERIAL].<b>}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
68 | |
9 | |
8 | |
7 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.