Search found 12 matches

by wbf
Wed Sep 20, 2023 10:14 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Need help on MDX
Replies: 4
Views: 724

Re: Need help on MDX

Hi thanks for the advice. the following works TM1SubsetToSet([dim01] , IIF(StrToMember("[dim02].["+[dim02].CURRENTMEMBER.PROPERTIES("att1")+"]").PROPERTIES("att2") = "xxx" , "subset_a" , IIF(StrToMember("[dim02].["+[dim02].CURRENT...
by wbf
Mon Sep 11, 2023 9:05 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Need help on MDX
Replies: 4
Views: 724

Re: Need help on MDX

Thanks. I've tried that as well - since it says invalid MDX expression I thought of just putting the simplified version which represents the idea. TM1SubsetToSet([dim01] , IIF(StrToMember([dim02].CURRENTMEMBER.PROPERTIES("att1")).PROPERTIES("att2") = "xxx" , "subse...
by wbf
Mon Sep 11, 2023 7:57 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Need help on MDX
Replies: 4
Views: 724

Need help on MDX

Hello, I need help on getting this MDX to work In a cube view, I'm trying to set the values to be displayed for dim01, subjected to selection of dim2 element and attributes of the selected dim2 element CURRENTMEMBER.PROPERTIES work fine but CURRENTMEMBER.PROPERTIES().PROPERTIES() doesn't work. TM1Su...
by wbf
Fri Mar 10, 2023 7:02 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Rounding .775
Replies: 6
Views: 976

Re: Rounding .775

Compared with formatting using NumberToStringEx which is rounding properly, wouldn't it make sense to not use ROUNDP? That would surely depend on the specifics, wouldn't it? Or did someone make you the rounding overlord? The format requested is two decimal. Given this real number 4283.775, may I as...
by wbf
Thu Mar 09, 2023 4:20 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Rounding .775
Replies: 6
Views: 976

Re: Rounding .775

Thanks for the explanation. I pointed this out as interesting because the fact that TM1 is storing the value slightly higher or lower in float is what is causing the inaccuracy of rounding using ROUNDP. Well perhaps it is a no-brainer and I am guessing this is known to everyone (because I can't seem...
by wbf
Mon Mar 06, 2023 10:53 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Rounding .775
Replies: 6
Views: 976

Rounding .775

Guys, found out something earlier Try this: nNumber = 4283.775 nRounded = ROUNDP(nNumber, 2); sRounded = NumberToStringEx(nRounded, '#.00', '.', ''); ASCIIOUTPUT('D:\TM1\Log\test.txt', NumberToString(nNumber), NumberToString(nRounded), sRounded); You will get 4283.775, 4283.77, 4283.78 A colleague o...
by wbf
Thu Dec 09, 2021 11:31 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Controlling subset selection in PAW
Replies: 1
Views: 12522

Controlling subset selection in PAW

PAW version: 2.0.53 Trying to find a way to make subset selection more user friendly. First thing first there are a lot of manually created subsets in this dimension, and as well as TI generated subsets. Users are ought to only select the TI generated ones, on top of that for each PAW book tab, they...
by wbf
Wed Dec 01, 2021 9:58 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Picklist FOR (not 'with') element attribute
Replies: 3
Views: 14167

Re: Picklist FOR (not 'with') element attribute

Thank you guys,
It works just fine!
by wbf
Wed Dec 01, 2021 4:56 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Picklist FOR (not 'with') element attribute
Replies: 3
Views: 14167

Picklist FOR (not 'with') element attribute

Is it possible to create a picklist for element in }ElementAttribute_dim? For example, customer dim has string element attribute called 'gender', I want to control the input by allowing only 'F' or 'M' Its like element attribute of element attribute. I've tried creating a static one. a new dimension...
by wbf
Wed Dec 01, 2021 4:41 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dimension elements wrongly displayed for multiple TM1RPTROW in Active form
Replies: 4
Views: 21607

Re: Dimension elements wrongly displayed for multiple TM1RPTROW in Active form

Thank you both. Will check with support and see if they patch this in any later version
by wbf
Mon Nov 29, 2021 11:30 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dimension elements wrongly displayed for multiple TM1RPTROW in Active form
Replies: 4
Views: 21607

Re: Dimension elements wrongly displayed for multiple TM1RPTROW in Active form

That's the version for my personal use only.
This specific client having issue is using the stable version 2.0.9 with Excel 2013 - however, could not find any related fix on 2.0.9.5

Thanks,
by wbf
Thu Nov 25, 2021 4:07 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dimension elements wrongly displayed for multiple TM1RPTROW in Active form
Replies: 4
Views: 21607

Dimension elements wrongly displayed for multiple TM1RPTROW in Active form

I'm amending an active form to add row dimension (DimC) via TM1RPTROW. There are already two existing TM1RPTROW in the report. Things I have performed: 1. Remove TM1RPTTITLE for DimC out from TM1RPTVIEW 2. Adding TM1RPTROW before the two existing ones 3. Manually delete all the rows under TM1RPTROW ...