|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Today @ 7:47 AM
Points: 78,
Visits: 320
|
|
Issue with Parallel Period
Hi,
I have a SSRS report, based on Cube, where a table shows information for Employees. The report has a table. Col1 - YearMonth, Col2 - Emp_ID, Col3 - Organisation Unit, and few more columns.
All I need to do is get to know which Organisation Unit they belong to in previous month and add this information as an additional column.
I want something like below and using With Member create a extra field in the Dataset for the table and create a extra column 'PrevMonthOrganistaion'.
[EMPLOYEE].[ORG UNIT], ParallelPeriod ([DATE].[Year Month].[Year Month], 1, [DATE].[Year Month].&[201101]) )
Not sure how to implement this . Kindly advise.
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Friday, May 17, 2013 11:53 AM
Points: 2,672,
Visits: 2,416
|
|
syedathariqbal (3/9/2011) Issue with Parallel Period
Hi,
I have a SSRS report, based on Cube, where a table shows information for Employees. The report has a table. Col1 - YearMonth, Col2 - Emp_ID, Col3 - Organisation Unit, and few more columns.
All I need to do is get to know which Organisation Unit they belong to in previous month and add this information as an additional column.
I want something like below and using With Member create a extra field in the Dataset for the table and create a extra column 'PrevMonthOrganistaion'.
[EMPLOYEE].[ORG UNIT], ParallelPeriod ([DATE].[Year Month].[Year Month], 1, [DATE].[Year Month].&[201101]) )
Not sure how to implement this . Kindly advise.
Your first parameter ParallelPeriod ([DATE].[Year Month].[Year Month], 1, [DATE].[Year Month].&[201101]))
should be something like "Month" depending on the way you have your hierarchies set up.
|
|
|
|