
I am attempting to asciioutput cube data to a CSV. It is a three dimension cube (Person, Date, Measures). The end result file format that I am trying to achieve is having a column for Person, Date and then a column for EACH measure. I successfully created a view with Person and Date as Row Values and then Measures as Column Values. When using this view as a source for the Asciioutput Process, I can see in the preview that it takes the measures and makes them rows as well.
Desired Output:
Person/Date /Measure1/Measure2/Measure3...
Joe /2016-04-30/ 17/ 5/ 34
Current Output:
Person/Date /Measure Dim/Value
Joe /2016-04-30/Measure 1 / 17
Joe /2016-04-30/Measure 2 / 5
Joe /2016-04-30/Measure 3 / 34
Any assistance would be much appreciated!!