Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Problem with SUM Command

Former Member
0 Likes
391

Hi,

I have problems with sum command. Not all the numeric fields are being added. Im using sum inside "AT THE END OF FIELD1" statement, and it seems to work with FIELD1, but when I change it to "AT THE END OF FIELD2" not all the numeric fields are added.

Any ideas guys?

Thanks in advance.

Kennny

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
368

Maybe you can use the <b>ON CHANGE</b> command -:)

Greetings,

Blag.

2 REPLIES 2
Read only

Former Member
0 Likes
369

Maybe you can use the <b>ON CHANGE</b> command -:)

Greetings,

Blag.

Read only

Former Member
0 Likes
368

Hey Kenny,

Go for the Event OnChange.

l


Loop at <Internal Table>.

     ON CHANGE OF dobj 
        <Sum the contents>
     ENDON.
     
Endloop.