I need to use the output of one alias in a future calculation:

Suppose I have:

C=(5)

and then later, I have

G=(1,A)
     (3,B)
     (5,C)

then I want to do a foreach on G where I multiply each G.$0 by C.$0, ending
up with

H=(5,A)
    (15,B)
    (25,C)

how can I do that?

I did accomplish it by doing a CROSS against the two tables and then running
foreach against that, but I want to avoid using CROSS.

Thanks for any ideas!
-M@

-- 
Have you thanked a teacher today? ---> http://www.liftateacher.org

Reply via email to