Mdx Interval definition
Posted: Mon Oct 10, 2011 10:43 am
				
				Hello everybody,
how can I define in MDX a subset with the interval 000 -* to 999 -* ?
Thanks
			how can I define in MDX a subset with the interval 000 -* to 999 -* ?
Thanks
Discussing all things TM1, Planning Analytics, PAx and PAW
https://www.tm1forum.com/
Code: Select all
{FILTER(
  {TM1SUBSETALL( [DimName] )},
  [DimName].CurrentMember.Name >= "000" AND [DimName].CurrentMember.Name <= "999"
)}