0

如何在水晶报表中找到数字的 n 次方。

For E.g

For 2 to the power of 4 should return 16
2 to the power of 5 should return 32.
4

2 回答 2

0

不知何故设法解决了我的问题,尽管解决方案很奇怪。贴出来供大家使用。

本地 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;
于 2013-08-30T11:28:11.943 回答
0

插入符号 ( ^) 是您要查找的运算符。

示例:2 ^ 4评估为 16 并2 ^ 5评估为 32

于 2013-08-30T15:18:30.823 回答