Search found 5 matches

by NewtoTM1P
Sat Feb 20, 2021 4:06 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Matching unnamed subset with named subset
Replies: 5
Views: 4332

Matching unnamed subset with named subset

I have a total of 100 cubes and 450 cube views in total, Many cube views are using some Unnamed subset, and those elements under Unnamed subsets is similar to other elements under the Named subset. Therefore, I wonder is there anyways to automatically let the cube view use that Named subset that has...
by NewtoTM1P
Sun Dec 27, 2020 4:04 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Question about the dependency between Metadata and Data
Replies: 3
Views: 3736

Re: Question about the dependency between Metadata and Data

Hello everyone, I am new to TM1, I am testing the dependency between Metadata and Data. As I set up two new TI, one only with Metadata, and one only with Data. There is nothing to be gained by doing that. The Metadata and Data tabs are designed to work together hand in hand. These are the roles of ...
by NewtoTM1P
Sat Dec 26, 2020 6:25 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Question about the dependency between Metadata and Data
Replies: 3
Views: 3736

Question about the dependency between Metadata and Data

Hello everyone, I am new to TM1, I am testing the dependency between Metadata and Data. As I set up two new TI, one only with Metadata, and one only with Data. In the Metadata TI, Sleep(9000); DimensionElementInsert('Dependency test', ' ','60,'N'); In the Data TI, CellGetN('Dependency test',' 60','b...
by NewtoTM1P
Thu Dec 10, 2020 3:29 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Question about While Loop
Replies: 3
Views: 1903

Re: Question about While Loop

You can use the DIMSIZ function to get the number of elements in your Region dimension, assign that number to a variable and then do a loop: nSize = DIMSIZ('Server:Region'); i = 0; WHILE (i <= nSize); Do something; i = i + 1; END; There is also a C-level called 'All region', do I need extra functio...
by NewtoTM1P
Wed Dec 09, 2020 4:38 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Question about While Loop
Replies: 3
Views: 1903

Question about While Loop

Hi, I started using TM1 a few weeks ago, and I have encountered a problem related to looping. As I would like to use the looping for the CellincrementN, but I am not sure how to apply that. The situation is about I am selling 5 different fruits in 5 different stores, and each of the fruits is sellin...