put value in consolidated cells
put value in consolidated cells
I am currently copying values from cube A to cube B by CellGetN and CellPutN. However, consolidated cells cannot be copied on cube B since the values are overwritten by the consolidation from the children's values. Is there any ways to bypass the automatic consolidation feature on cube B?
Thanks!
Thanks!
- Steve Rowe
- Site Admin
- Posts: 2455
- Joined: Wed May 14, 2008 4:25 pm
- OLAP Product: TM1
- Version: TM1 v6,v7,v8,v9,v10,v11+PAW
- Excel Version: Nearly all of them
Re: put value in consolidated cells
The short answer is yes but without knowing alot more about your system I would not recommend it.
If you put
[]=C: stet;
At the beginning (after skipcheck) of your rule sheet then all C levels will become input, you will probably have a nasty slow running cube though.
HTH
If you put
[]=C: stet;
At the beginning (after skipcheck) of your rule sheet then all C levels will become input, you will probably have a nasty slow running cube though.
HTH
Technical Director
www.infocat.co.uk
www.infocat.co.uk
- Steve Vincent
- Site Admin
- Posts: 1054
- Joined: Mon May 12, 2008 8:33 am
- OLAP Product: TM1
- Version: 10.2.2 FP1
- Excel Version: 2010
- Location: UK
Re: put value in consolidated cells
and more to the point, why would you want to? its more normal to go from detailed cube to high level cube, rather than the other way around. On the very rare occasions i've had to (site dim consolidated by things like UK / Europe / Rest of World etc) i've added a dummy level zero to the consolidation to hold it, rather than try to oevrride the consolidation itself.
If this were a dictatorship, it would be a heck of a lot easier, just so long as I'm the dictator.
Production: Planning Analytics 64 bit 2.0.5, Windows 2016 Server. Excel 2016, IE11 for t'internet
Production: Planning Analytics 64 bit 2.0.5, Windows 2016 Server. Excel 2016, IE11 for t'internet
- Martin Ryan
- Site Admin
- Posts: 1989
- Joined: Sat May 10, 2008 9:08 am
- OLAP Product: TM1
- Version: 10.1
- Excel Version: 2010
- Location: Wellington, New Zealand
- Contact:
Re: put value in consolidated cells
Must've been late when you wrote that Steve.Steve Rowe wrote:If you put
[]=C: stet;
At the beginning (after skipcheck) of your rule sheet then all C levels will become input, you will probably have a nasty slow running cube though.

If you stet a C: cell then all that happens is that it naturally consolidates as normal. This only makes any difference if there is a C: level rule later in the rule. It over-rides this and reverts the consolidation back to being a plain old consolidation.
I tend to create an "Input" element that rolls up into the consolidation. E.g. if you want to write to "USA", but USA is a consolidation, I would create "USA Input", and write to that, which rolls up in "USA". If you want to ensure that only the Input fields are written to you can write a rule that says ['Actuals'] = N: if(scan('Input', !Region)<>0, stet, 0); or something similar. That will force everything else to zero.
Martin
Please do not send technical questions via private message or email. Post them in the forum where you'll probably get a faster reply, and everyone can benefit from the answers.
Jodi Ryan Family Lawyer
Jodi Ryan Family Lawyer
-
- Site Admin
- Posts: 6644
- Joined: Sun May 11, 2008 2:30 am
- OLAP Product: TM1
- Version: PA2.0.9.18 Classic NO PAW!
- Excel Version: 2013 and Office 365
- Location: Sydney, Australia
- Contact:
Re: put value in consolidated cells
Data spreading would tend to disagree with the unequivocal "Never"Martin Ryan wrote:Must've been late when you wrote that Steve.Steve Rowe wrote:If you put
[]=C: stet;
At the beginning (after skipcheck) of your rule sheet then all C levels will become input, you will probably have a nasty slow running cube though.You can never type into a consolidation for a numeric cell.

"To them, equipment failure is terrifying. To me, it’s 'Tuesday.' "
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
Re: put value in consolidated cells
Thanks, everyone!!
Basically I need to create a subset (cube B) from a full set cube (cube A). Say cube A contains 10 years data of all regions, and cube B will contains only 3 years of 1 region. Since cube B is only a reference for the users, users will only read from it and no cell values will be updated. In this case, I created a process to copy the corresponding data (no matter is input cells or calculated cells) from cube to cube, and didn't copy the rules file from cube A to cube B. Copying data can also maintain the opening amount (which is brought forward from last year) in the year 1 of cube B.
The problem is that, there is cell called GP% which is caluclated from a rule GP%=(RP-Cost)/RP and there is also a product dimension with consolidated and simple elements. The data is copied correctly in the cells of the GP% and the product simple elements, but it is not correct in the cells of the GP% and the product consolidated elements since the values are rolled up from the lower level. That's why I wonder if there is any ways to disable the automatic consolidation feature on a cube.
In other OLAP tools, I think the cube B can be simply done by building virtual cube. I am new in TM1. Please let me know if it is not the way to do it in TM1.
Thank you very much, all~!
Basically I need to create a subset (cube B) from a full set cube (cube A). Say cube A contains 10 years data of all regions, and cube B will contains only 3 years of 1 region. Since cube B is only a reference for the users, users will only read from it and no cell values will be updated. In this case, I created a process to copy the corresponding data (no matter is input cells or calculated cells) from cube to cube, and didn't copy the rules file from cube A to cube B. Copying data can also maintain the opening amount (which is brought forward from last year) in the year 1 of cube B.
The problem is that, there is cell called GP% which is caluclated from a rule GP%=(RP-Cost)/RP and there is also a product dimension with consolidated and simple elements. The data is copied correctly in the cells of the GP% and the product simple elements, but it is not correct in the cells of the GP% and the product consolidated elements since the values are rolled up from the lower level. That's why I wonder if there is any ways to disable the automatic consolidation feature on a cube.
In other OLAP tools, I think the cube B can be simply done by building virtual cube. I am new in TM1. Please let me know if it is not the way to do it in TM1.
Thank you very much, all~!
- Martin Ryan
- Site Admin
- Posts: 1989
- Joined: Sat May 10, 2008 9:08 am
- OLAP Product: TM1
- Version: 10.1
- Excel Version: 2010
- Location: Wellington, New Zealand
- Contact:
Re: put value in consolidated cells
Sounds like you could simply create a view that only had subsets that show the data that you want in the original cube. No need for a second cube at all.
You could either create the view with subsets, or set up security so that users can only see the regions you want to see anyway, so any view they create will force them to only look at the elements you want them to look at.
Martin
You could either create the view with subsets, or set up security so that users can only see the regions you want to see anyway, so any view they create will force them to only look at the elements you want them to look at.
Martin
Please do not send technical questions via private message or email. Post them in the forum where you'll probably get a faster reply, and everyone can benefit from the answers.
Jodi Ryan Family Lawyer
Jodi Ryan Family Lawyer
Re: put value in consolidated cells
Thanks for your suggestion, Martin!
Actually the cube B will be sent to the region for their own use
Actually the cube B will be sent to the region for their own use

- Martin Ryan
- Site Admin
- Posts: 1989
- Joined: Sat May 10, 2008 9:08 am
- OLAP Product: TM1
- Version: 10.1
- Excel Version: 2010
- Location: Wellington, New Zealand
- Contact:
Re: put value in consolidated cells
You're sending a cube to the region? Are you using replication or do they have their own copy of TM1 and you're sending the .cub files?
Can you please explain what you're doing, and what you're trying to achieve there?
Martin
Can you please explain what you're doing, and what you're trying to achieve there?
Martin
Please do not send technical questions via private message or email. Post them in the forum where you'll probably get a faster reply, and everyone can benefit from the answers.
Jodi Ryan Family Lawyer
Jodi Ryan Family Lawyer
- Steve Rowe
- Site Admin
- Posts: 2455
- Joined: Wed May 14, 2008 4:25 pm
- OLAP Product: TM1
- Version: TM1 v6,v7,v8,v9,v10,v11+PAW
- Excel Version: Nearly all of them
Re: put value in consolidated cells
I'm seem to be using this icon alot at the momentMust've been late when you wrote that Steve. You can never type into a consolidation for a numeric cell.

I know there was something wrong with it when I was writing it, I thought it was just a dumb idea not something that would not work at all!
Cheers,
Technical Director
www.infocat.co.uk
www.infocat.co.uk