pmenonsmitka
Programmer
I'm trying to do a recursive join :
If LABOR.craft = 'Y' then LABOR.NAME (GOOD TO GO!!)
else
if craft = 'N' then we have to go back into the table to get the craft code for the labor and get the labor.name for the given craft code.
What I have so far in the formula called Labor which is going to be the group.
if {LABOR.ISCRAFT} = 'Y' then {LABOR.NAME}
else
if {LABOR.ISCRAFT} = 'N' then stringVar Craft := {LABOR.CRAFT};
if Craft = {LABOR.CRAFT} then {LABOR.NAME}
Will this give me what I need??
Thanks,
P
If LABOR.craft = 'Y' then LABOR.NAME (GOOD TO GO!!)
else
if craft = 'N' then we have to go back into the table to get the craft code for the labor and get the labor.name for the given craft code.
What I have so far in the formula called Labor which is going to be the group.
if {LABOR.ISCRAFT} = 'Y' then {LABOR.NAME}
else
if {LABOR.ISCRAFT} = 'N' then stringVar Craft := {LABOR.CRAFT};
if Craft = {LABOR.CRAFT} then {LABOR.NAME}
Will this give me what I need??
Thanks,
P