trying to use the value propery of TM1Cell class and running into a problem with passing the string[] parameter for
dimension elements. ie: [element1, element2 ...element(n)]
it seem to find the element names okay as long as there's no hierarchy and the dimension element are all top nodes.
when the element names are further down the tree, the code just throws a fit and and claims
"Element [CC101] not found in dimension [Cost Centre]" because it's under a consolidated element,
or at least i think that's the reason.

does anyone have any working sample or syntax reference?
i'm a newbie to .net api
Code: Select all
TM1Cube cube = server.Cubes["Stats"];
string[] nDim = new string[] { "Actual", "201400", "CC101", "General", "2010/2011", "Feb", "Amount" };
TM1Cell cell = cube.Cells[nDim];