I have been looking for ways to disable Picklist in Active Form but just can't find a way.
The picklist is manged through a control cube and it's required for input via cube viewer. However the Active form is more for reporting and the picklist is slowing down the whole active form as one of the picklist cell have a long list of elements.
I have tried looking at the formatting area but there isn't any formatting control, neither on the 1st row of the active form.
It seems to be the DBRW that automatically transform the cell into a picklist. Any suggestion ?
Active Forms with Picklist
-
- MVP
- Posts: 352
- Joined: Wed May 14, 2008 1:37 pm
- OLAP Product: TM1
- Version: 2.5 to PA
- Excel Version: Lots
- Location: Sydney
- Contact:
Re: Active Forms with Picklist
Change your DBRW formulae in the first row of the active form for any columns that have picklists on them so that you enclose the DBRW in parentheses.
i.e. change
to
As you already have a picklist on that column, you will have to delete the formula and then re-enter it from scratch (or paste and edit it in the formula entry box) otherwise it will complain that your new formula isn't one of the acceptable values.
i.e. change
Code: Select all
=DBRW(<tm1rptviewref>, <dimref1>, <dimref2>, <etc>)
to
Code: Select all
=(DBRW(<tm1rptviewref>, <dimref1>, <dimref2>, <etc>))
Andy Key
-
- Community Contributor
- Posts: 206
- Joined: Fri Oct 17, 2008 2:40 am
- OLAP Product: TM1, PA , TMVGate
- Version: 2.x
- Excel Version: 36x
- Location: Singapore
- Contact:
Re: Active Forms with Picklist
Thanks. Works pretty well.
Actually you do not need to empty the cell, just Clear the Data Validation on the cell before changing the DBRW. Save some time if you have many cells to handle.
Actually you do not need to empty the cell, just Clear the Data Validation on the cell before changing the DBRW. Save some time if you have many cells to handle.