I have two dimensions, Region and year.
Region
----Region1
----Region2
----Region3
Year
----2009
----2010
----2011
I have value100 for the combination of {Region1, 2009}, {Region2, 2010}, {Region3, 2011}. I have given the view as data source. Now I want to write a TI process that all the cells updated with a value 1. I have written a TI CELLPUTN function to achieve this. CELLPUTN(1, 'Cube Name', vRegion, vYear); But it updates 1 wherever there is a value already i.e., {Region1, 2009}, {Region2, 2010}, {Region3, 2011} combination have the updated values. How to do this using TI?
Thanks in advance.
kkmk.
Using TI - Cells Updated with Number
-
- MVP
- Posts: 3241
- Joined: Mon Dec 29, 2008 6:26 pm
- OLAP Product: TM1, Jedox
- Version: PAL 2.1.5
- Excel Version: Microsoft 365
- Location: Brussels, Belgium
- Contact:
Re: Using TI - Cells Updated with Number
Hello
By default, the zero values are skipped in the view.
The ViewExtractSkipZeroesSet can do this.
By default, the zero values are skipped in the view.
The ViewExtractSkipZeroesSet can do this.
Best regards,
Wim Gielis
IBM Champion 2024-2025
Excel Most Valuable Professional, 2011-2014
https://www.wimgielis.com ==> 121 TM1 articles and a lot of custom code
Newest blog article: Deleting elements quickly
Wim Gielis
IBM Champion 2024-2025
Excel Most Valuable Professional, 2011-2014
https://www.wimgielis.com ==> 121 TM1 articles and a lot of custom code
Newest blog article: Deleting elements quickly
-
- Posts: 73
- Joined: Wed Jan 25, 2012 9:08 am
- OLAP Product: IBM Cognos TM1
- Version: 10.2
- Excel Version: 2013
Re: Using TI - Cells Updated with Number
Thank you. It works!!
kkmk.
kkmk.