Search found 7 matches

by Kerry372
Fri Apr 11, 2014 12:39 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Java Error configuring TM1WEB integrated login TM1 10.2
Replies: 5
Views: 6556

Re: Java Error configuring TM1WEB integrated login TM1 10.2

I just resolved an issue yesterday on our test environment that might be related. I found a fix IBM released in June 2010 for API developers. The issue is related to java and the applix cert. I emailed IBM support to let them know. I'm guessing they will be seeing more of it. I was getting this erro...
by Kerry372
Thu Oct 09, 2008 8:15 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 9.4?
Replies: 7
Views: 6666

Re: TM1 9.4?

I just had the same issue when I opened a multisheet workbook on the server. I noticed autocalc was on when I opened it. I killed the workbook without saving changes (so I didn't save it with autocalc on). Then, I turned off autocalc, reopened the workbook and pressed F9. It calculated without cycli...
by Kerry372
Fri Oct 03, 2008 7:42 pm
Forum: Bugs
Topic: 11-81653841 TM1Web 9.4 Zooming and Exporting
Replies: 0
Views: 5145

11-81653841 TM1Web 9.4 Zooming and Exporting

Using TM1Web 9.4 on test server 64bit (vmware) Zooming: When zooming out on Excel reports with frozen panes, the frozen panes (columns and rows) show only white space where the extra viewable area should be. The areas not frozen display correctly. Exporting: When exporting to Excel or PDFs the colum...
by Kerry372
Tue Sep 30, 2008 6:50 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Recalc Current Cell
Replies: 9
Views: 8347

Re: TM1 Recalc Current Cell

Can you select the cell and then use sendkeys.

SendKeys "{F2}"
SendKeys "{ENTER}"
by Kerry372
Wed Jul 02, 2008 7:01 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 MDX Count rows in Excel Containing Data
Replies: 3
Views: 6192

Re: TM1 MDX Count rows in Excel Containing Data

Maybe you could you have 3 variables: v1 = dimnm('your dimension',dimsiz('your dimension')+if you need to add anything to get the last element); v2 = 1+stringtonumber(v20)*1; v3 = if(long(numbertostring(v2))=1,'0000000'|numbertostring(v2),if(long(numbertostring(v2))=2,'000000'|numbertostring(v2),if(...
by Kerry372
Wed Jul 02, 2008 5:18 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Cell Reference in SUBNM
Replies: 8
Views: 12482

Re: Cell Reference in SUBNM

I use cell references in subnms to update the default months on my tm1web files. For example subnm("months","dashboard_months",D4) where D4 is the referenced cell that dynamically changes to the last closed month. They can still pick a different month, but the sheets always defau...
by Kerry372
Thu Jun 26, 2008 3:11 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Formula in excel
Replies: 8
Views: 10307

Re: Formula in excel

Maybe you could write some vba to do a find and replace of =d with '=d on the hidden rows. If you insert the single quote it won't calculate and then you can remove it when you want it to calculate.