Page 1 of 1

TM1 Web add Automatic Sheet Refresh

Posted: Mon Oct 11, 2021 1:11 pm
by pikolikoli
Hello Forum,

I want to use an automatic refresh on a sheet in TM1 Web without using a refresh button. The sheet is a normal excel sheet not an active form, where you select values from dimensions then a launch button to launch a process.

Based on a selection of some dimensions, the other cells values should be updated automaticaly without a refresh.

What I did is I added TM1REBUILDOPTION in Name manager Set to 1. But it seem that it is not working with my drop down selection ( which also whenever I choose a value from the drop down some cells values should be updated automatically).

Is there a way to make a sheet recalculated automatically without a refresh button in TM1 Web ?

Thanks in Advance.

Re: TM1 Web add Automatic Sheet Refresh

Posted: Mon Oct 11, 2021 6:43 pm
by burnstripe
How are you generating your selections, through subnm or data validation? If its subnm then as long as automatic recalc is on when you upload the application, tm1web should change when a selection is made.

If it's a data validation list then have a look at the tm1web config. There's a setting RecalcOnDataValidationChange which if set to true will trigger a recalc when a data validation is changed.

Similar option exists for picklists as well.

Once you've made the change the Web service will need a restart

Re: TM1 Web add Automatic Sheet Refresh

Posted: Wed Oct 13, 2021 12:39 pm
by pikolikoli
burnstripe wrote: Mon Oct 11, 2021 6:43 pm How are you generating your selections, through subnm or data validation? If its subnm then as long as automatic recalc is on when you upload the application, tm1web should change when a selection is made.

If it's a data validation list then have a look at the tm1web config. There's a setting RecalcOnDataValidationChange which if set to true will trigger a recalc when a data validation is changed.

Similar option exists for picklists as well.

Once you've made the change the Web service will need a restart
Thank you for your help. I am using a calculation using data Validation where I have a condition if ( cell = 0; subnm ; show value of cell2)... I am wondering if there is any other solution that I can do so I dont have to change the config file ( Avoiding the restart as much as possible ).

Thank you

Re: TM1 Web add Automatic Sheet Refresh

Posted: Wed Oct 13, 2021 9:44 pm
by burnstripe
As far as I'm aware that setting is the only way to get what you require. It forces a refresh when the data validation changes, without the parameter the user will need to trigger the refresh.

Only the tm1web service will need restarting following the config change in tm1web.config, nothing else. So generally takes 5-10 minutes.

Re: TM1 Web add Automatic Sheet Refresh

Posted: Thu Oct 14, 2021 1:50 am
by pikolikoli
burnstripe wrote: Wed Oct 13, 2021 9:44 pm As far as I'm aware that setting is the only way to get what you require. It forces a refresh when the data validation changes, without the parameter the user will need to trigger the refresh.

Only the tm1web service will need restarting following the config change in tm1web.config, nothing else. So generally takes 5-10 minutes.
Oh I see ..if it is the tm1web so no problem. Thank you very much for your help! :)