Search found 11 matches
- Fri Aug 28, 2009 6:21 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Spreadsheet Formatting lost in TM1 web
- Replies: 0
- Views: 1614
Spreadsheet Formatting lost in TM1 web
Hi, We are trying to implement TM1 web for reporting however we are finding that all formatting except number formats are lost from spreadsheets when viewed via TM1 web. We are using 9.4.1, Windows Server 2003 R2 and IE6, the server is running Excel 2007 however client machines are using Excel 2003....
- Thu Aug 27, 2009 11:41 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Carriage return in text string for TM1 Web
- Replies: 17
- Views: 19011
Re: Carriage return in text string for TM1 Web
Hi Alan, Thanks for your reply. I was afraid that was going to be the case. And you are right, if TM1 Web is going to be useful for such things as executive/board reportign it's handling of comments has to be improved. It's great that the 250 character limit has been addressed by Excel2007 and 9.4, ...
- Thu Aug 27, 2009 5:57 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Carriage return in text string for TM1 Web
- Replies: 17
- Views: 19011
Carriage return in text string for TM1 Web
Hi, We are evaluating the use of TM1 web for board reporting and have come across the issue that carriage returns between paragraphs get lost when rendered to the web page. The carriage returns are captured in the cube (when we paste the text to notepad from the cube all the carriage returns are the...
- Wed Dec 10, 2008 3:30 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Building a Rolling 13Week Period Dimension
- Replies: 3
- Views: 4343
Re: Building a Rolling 13Week Period Dimension
Thanks Neil and Alan for you suggestions and help. You are right, the code is in the prolog tab., and I should have clarified that the dimension is recreated each day and comprise 12 complete 7 day weeks, with there being a hanging 1st and 13th week when Day 1 is not a Monday. By changing nStop to e...
- Fri Dec 05, 2008 5:14 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Building a Rolling 13Week Period Dimension
- Replies: 3
- Views: 4343
Building a Rolling 13Week Period Dimension
I am trying to build a rolling 13week Period dimension using TI. I have got the dimension populating with the 91 days (Today to 13weeks in the future). METADATA nCurrDate = DAYNO(TODAY); nCurrWeek = WEEKNUM(TODAY); WHILE(nCounter<nStop); sysDate = DATE(nCurrDate); currMonth = SUBST(sysDate, 4, 2); #...
- Mon Sep 01, 2008 12:52 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: TM1 and Dundas Charts
- Replies: 5
- Views: 5593
Re: TM1 and Dundas Charts
The company I work for has the licence for the latest version of Dundas charts which it uses for its MS Reporting Services cubes. As I like some of the charting and dashboard objects which it has, I was hoping that I could integrate some of those controls into my TM1 dashboards. I am just not sure h...
- Fri Aug 29, 2008 4:24 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: TM1 and Dundas Charts
- Replies: 5
- Views: 5593
TM1 and Dundas Charts
Hi,
Has anyone had any experience with integrating Dundas charts with Excel and TM1
Cheers,
Robert
Has anyone had any experience with integrating Dundas charts with Excel and TM1
Cheers,
Robert
- Fri Aug 29, 2008 3:30 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Retrieving an Attribute Using MDX
- Replies: 5
- Views: 11009
Re: Retrieving an Attribute Using MDX
Hi,
Thanks a lot. That works perfectly.
Cheers,
Robert
Thanks a lot. That works perfectly.
Cheers,
Robert
- Tue Aug 26, 2008 5:09 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Retrieving an Attribute Using MDX
- Replies: 5
- Views: 11009
Re: Retrieving an Attribute Using MDX
Just an update. I made the folllowing change which gets rid of the error but makes no difference to what is being retieved. SELECT {([Version].[Actual], [Debt_Measures].[Credit Limit])} ON COLUMNS, NON EMPTY {[IntegraT_Facilities].[Total Australian Facilities].Children} DIMENSION PROPERTIES [Integra...
- Tue Aug 26, 2008 4:32 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Retrieving an Attribute Using MDX
- Replies: 5
- Views: 11009
Re: Retrieving an Attribute Using MDX
Hi, Thanks for your help and quick reply. I have tried your suggestion (see below) without any luck. MDX EXPRESSION: SELECT {([Version].[Actual], [Debt_Measures].[Credit Limit])} ON COLUMNS, NON EMPTY {[IntegraT_Facilities].[Total Australian Facilities].Children} ON ROWS DIMENSION PROPERTIES [Integr...
- Tue Aug 26, 2008 2:16 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Retrieving an Attribute Using MDX
- Replies: 5
- Views: 11009
Retrieving an Attribute Using MDX
Hi, I am trying to retrieve a specific member property (the attribute Description) rather than the Caption property when generating a report using VBA and MDX. Code: AccountCode = cst.Axes(1).Positions(0).Members(h).Caption Example: AccountCode = 3005 The above returns an account code, however I wan...