How can I get the MDX query below to display the date next to the customer? Currently it only displays the customer, or whichever dimension I make first in the nonempty call. I'd like both to show in the results.
SELECT {[Measures].[Count1], [Measures].[Count2],
[Measures].[Count3]} ON COLUMNS,
nonempty({[Customers]}, {[DateRange]}) ON Rows
FROM Cube
I tried crossjoin but that return an out of memory error.
Thanks!
I am getting this: Customer | Count1 | Count2 | Count3 |
I would like to see this: Customer | Date | Count1 | Count2 | Count3 |