chevyimpala
Programmer
Okay the problem is that I have 2 reports. One called Currency, and another called Performance. Each report has a calculation for a column named Unreal like this:
Unreal: IIf([Curr]="EUR" Or [Curr]="GBP",[Size]*-1*[Rate]+([Size]*[Revalrate]),IIf([Curr]="CHF" Or [Curr]="JPY",[Size]*-1/[Rate]+([Size]/[Revalrate]),IIf([Curr]="EUR/JPY" Or [Curr]="EUR/GBP",[Size]*([Revalrate]-[Rate])/[Rate])))
and each report takes data from the same table. Now here is where the problem inlies. When I run the Currency report I get a sum of this column as -1,412,023 (the correct amount), however when I run the performance report I get a sum of the column that reads 142,835.
I have been stairing at this problem for 2 hours and I cant figure out why it is giving me 2 different numbers in each report. If anyone can help I would be greatful
THX
Unreal: IIf([Curr]="EUR" Or [Curr]="GBP",[Size]*-1*[Rate]+([Size]*[Revalrate]),IIf([Curr]="CHF" Or [Curr]="JPY",[Size]*-1/[Rate]+([Size]/[Revalrate]),IIf([Curr]="EUR/JPY" Or [Curr]="EUR/GBP",[Size]*([Revalrate]-[Rate])/[Rate])))
and each report takes data from the same table. Now here is where the problem inlies. When I run the Currency report I get a sum of this column as -1,412,023 (the correct amount), however when I run the performance report I get a sum of the column that reads 142,835.
I have been stairing at this problem for 2 hours and I cant figure out why it is giving me 2 different numbers in each report. If anyone can help I would be greatful
THX