using cellput to put the same value in 2 element values
Posted: Tue Apr 30, 2024 3:01 pm
I have a cell put on the data tab of a process. What i need is the Rate Value to be put against 2 elements.
Where it says if SourceNum @= 1 I want to put that Rate into values of 1 and 3 in the Price Rate dimension
Everything I have tried has not worked and google has been no help. Is this possible?
Where it says if SourceNum @= 1 I want to put that Rate into values of 1 and 3 in the Price Rate dimension
Everything I have tried has not worked and google has been no help. Is this possible?
Code: Select all
IF (vSourceNum @= '1');
CellPutN( Value,
vTargetCube,
Period,
vcompany ,
'1', AND 3
product,
'Rate');
ELSEIF (vSourceNUM @= '2');
CellPutN( Value,
vTargetCube,
Period,
vcompany ,
'2',
product,
'Rate');
ENDIF;