ssas - MDX: Query Data analysed -


in query used clause in year 2015 , quarter-[2013]&[quarter1], how possible, , getting result set 10 records. result set not displaying.

with member [measures].[test]  ( [measures].[programassessmentpatientcnt] + [measures].[assessmentpatientcnt] )       member [measures].[test1]  ( [measures].[ccmpatientcnt] + [measures].[careteamcnt] + [measures].[ccmpatientcnt] ) select ( ( { [dimenrollstatus].[enrollmentstatus].[enrollmentstatus] } ), { [measures].[assessmentpatientcnt], [measures].[test], [measures].[test1] } ) on columns, subset (   nonempty (     {       ( { [dimassessment].[assessmenttext].[assessmenttext] },       { [dimassessment].[questiontext].[questiontext] },       { [dimassessment].[answertext].[answertext] } )     },     { [measures].[assessmentpatientcnt], [measures].[test], [measures].[test1] }   ),   0,   10 ) on rows [navigatecube] ( {   ( { [dimmanagedpopulation].[managedpopulationname].&[1044]&[ltc lincoln centers] },   { [dimanchordate].[calender year].&[2015] },   { [dimanchordate].[calendar semester des].[all] },   { [dimanchordate].[calendar quarter des].&[2013]&[quarter1] },   { [dimanchordate].[english month name desc].[all] } ) } ) 

does return rows?

where  (   [dimmanagedpopulation].[managedpopulationname].&[1044]&[ltc lincoln centers],   [dimanchordate].[calender year].&[2015],   //[dimanchordate].[calendar semester des].[all],   [dimanchordate].[calendar quarter des].&[2013]&[quarter1],   [dimanchordate].[english month name desc].[all] ); 

maybe following:

where  (   [dimmanagedpopulation].[managedpopulationname].&[1044]&[ltc lincoln centers],   {     [dimanchordate].[calender year].&[2015],     [dimanchordate].[calendar semester des].[all],     [dimanchordate].[calendar quarter des].&[2013]&[quarter1],     [dimanchordate].[english month name desc].[all]   } ); 

Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -