Page 1 of 1

TI Error: Rules Apply To Cell

Posted: Wed May 19, 2010 9:09 am
by olapuser
Hi,

Anyone know how to skip the TI Process error "Rules Apply To Cell"?

Thanks

Re: TI Error: Rules Apply To Cell

Posted: Wed May 19, 2010 9:38 am
by Steve Rowe
Use the TI function CellIsUpdateable to test the location you are writing to before you write to it.

If (CellIsUpdateable ( cube reference)=1);
CellPutN ( value, cube reference );
EndIf;

Cheers