Filling table

Discussions about CSEntry
Post Reply
LOKOSSOU DURAND
Posts: 4
Joined: September 23rd, 2016, 3:26 pm

Filling table

Post by LOKOSSOU DURAND »

Hi
I want to writte controls one two table.
I the number of line in the first table should be the same into the second.
Gregory Martin
Posts: 1796
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

Re: Filling table

Post by Gregory Martin »

I'm not sure if I'm understanding your question correctly, but if you want to control the number of rows in your second table based on the number of rows in your first table, you could write something like this:
PROC FIRST_FIELD_ON_SECOND_ROSTER

preproc

    
if curocc() > totocc(FIRST_ROSTER_NAME) then
        
endgroup;
    
endif;
Post Reply