Search found 48 matches

by jrizk
Thu Sep 23, 2010 2:30 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Excel Double Click on cell for DrillThrough
Replies: 2
Views: 2210

Excel Double Click on cell for DrillThrough

Hi all. Below is code to enable double clicking on a cell to bring up the drill though selections (normally this is selected on by right clicking on a cell with the DBRW and selecting Drill). Just a neat way to use double clicking, The code needs to be on each worksheet that you want to enable this ...
by jrizk
Wed Sep 22, 2010 6:39 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Xcelerator VBA API CAM Server Connect
Replies: 10
Views: 13934

Xcelerator VBA API CAM Server Connect

Hi. For those who want to use TM1SystemServerConnect with Xcelerator below is an example of the code required which is used in place of TM1SystemServerConnect - Declare Function - Declare Function TM1SystemServerConnectWithCAMNamespace Lib "tm1api.dll" (ByVal hPool As Long, ByVal vServerNa...
by jrizk
Mon Sep 20, 2010 2:40 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Turbo Integrator: Any way to use or in an IF statement?
Replies: 6
Views: 8456

Re: Turbo Integrator: Any way to use or in an IF statement?

& = AND eg (Value1 > 5) & (Value1 < 10) Returns TRUE if the value is greater than 5 and less than 10.
% = OR eg (Value1 > 10) % (Value1 < 5) Returns TRUE if the value is greater than 10 or less than 5.
~ = NOT eg ~(Value1 > 5) Equivalent to (Value1 <= 5)
by jrizk
Mon Sep 20, 2010 2:38 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Turbo Integrator: Any way to use or in an IF statement?
Replies: 6
Views: 8456

Re: Turbo Integrator: Any way to use or in an IF statement?

Hi.

IF ( entity @= '1000' % entity @= '5000' );
... do something;
ENDIF;

check out Tm1 help on 'logical operators'
by jrizk
Mon Sep 20, 2010 2:36 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Load data into a cube for all versions
Replies: 6
Views: 5028

Re: Load data into a cube for all versions

Hi. It's not difficult to loop through the dimension - though is there are reason you want to replicate the same data across multiple versions? eg In the data tab you would have the following - however it is important to remember that this loop will occur for each record returned from your source. T...
by jrizk
Mon Sep 20, 2010 1:52 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Load data into a cube for all versions
Replies: 6
Views: 5028

Re: Load data into a cube for all versions

Hi. CellPutN is as follows: CellPutN( value, CubeName, Element of Dim1, Element of Dim2, Element of Dim2 etc) Assuming BILLDAYS is in your variables tab and is numeric you'd need something like this: CellPutN(BILLDAYS,'Planning',vNumber,vPeriod,'Actual'); CellPutN(BILLDAYS,'Planning',vNumber,vPeriod...
by jrizk
Mon Sep 20, 2010 2:23 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Xcelerator loading XLSM files to application folder
Replies: 14
Views: 9400

Re: Xcelerator loading XLSM files to application folder

1. First you need to stop the Tm1 service (save your data first) 2. Create a blob file using text editor and place it under the appropriate applications folder (if any), eg under }Applications\MyReports (or just }Applications if there are no sub folders) - save the following as a file called say Boo...
by jrizk
Mon Sep 20, 2010 1:51 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: How to create view in TI to specific elements
Replies: 6
Views: 9220

Re: How to create view in TI to specific elements

Hi. You don't need to assign the dimension to titles/rows/columns etc in a zero out view. Just assign the elemenst you want to zero out to a subset that is then assigned to the zero our view. If your DIMIX('base_month_dates',vDate) is saved say as the subset CurrentMonths and this contains the eleme...