Hi,
I have 3 column in my report, which I need to calculate in one of them "column1-column2"
ok, this I did. but in the form footer, i have to make sum all the data, which is in column3.
So, I made an event in "on format" of report detail like this:
dim s
column3=column1-coulmn2
s=s+column3
And in "on format" of report footer:
[text32]=s
Finally, every thing is good but the result value is *2,
I checked by break and I found the detail event will run and calculate 2 time but I don't know why and why the value of lines in detail is not *2?????
can you help me???
thanks
Ali
I have 3 column in my report, which I need to calculate in one of them "column1-column2"
ok, this I did. but in the form footer, i have to make sum all the data, which is in column3.
So, I made an event in "on format" of report detail like this:
dim s
column3=column1-coulmn2
s=s+column3
And in "on format" of report footer:
[text32]=s
Finally, every thing is good but the result value is *2,
I checked by break and I found the detail event will run and calculate 2 time but I don't know why and why the value of lines in detail is not *2?????
can you help me???
thanks
Ali