如何在水晶报表中找到数字的 n 次方。
For E.g
For 2 to the power of 4 should return 16
2 to the power of 5 should return 32.
如何在水晶报表中找到数字的 n 次方。
For E.g
For 2 to the power of 4 should return 16
2 to the power of 5 should return 32.
不知何故设法解决了我的问题,尽管解决方案很奇怪。贴出来供大家使用。
本地 stringVar 数组 x := ['c1','c2'];
Local NumberVar i;
Local NumberVar j:=1;
For i:=0 to (Count(x)) do
(
if(i=0) then
(
j:=2;
)
else
j:=(j*2)+(j*2);
i:=i+1;
);
Count(x);
if(Count(x)=1) then
(
j:=2;
)
else
j/2;
插入符号 ( ^
) 是您要查找的运算符。
示例:2 ^ 4
评估为 16 并2 ^ 5
评估为 32