![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have in example one dimension with 3 levels COMPANY (ex. TR,ZR) NETWORK (ex. E,B) NAME ( ex. steve, John) and Sales fact i want to get result like Company |Network|Name | Sales -------------------------------- TR |E |steve | 100 ZR |B |john | 200 TR |B |adam | 300 to export data to table how can i get this ? |
#3
| |||
| |||
|
|
select { [Measures].[Sales] } on columns, { [Company].Members * [Network].Members * [Name].Members } on rows from MyCube Bartosz Gorzynski wrote: I have in example one dimension with 3 levels COMPANY (ex. TR,ZR) NETWORK (ex. E,B) NAME ( ex. steve, John) and Sales fact i want to get result like Company |Network|Name | Sales -------------------------------- TR |E |steve | 100 ZR |B |john | 200 TR |B |adam | 300 to export data to table how can i get this ? |
![]() |
| Thread Tools | |
| Display Modes | |
| |