Link to home
Start Free TrialLog in
Avatar of Michael Katz
Michael KatzFlag for United States of America

asked on

Subreport with Multiple Declared Shared Variables in 1 Formula

I have the following

WhilePrintingRecords;
Shared Numbervar TimeInBay;
Shared Numbervar MatHandl;
Shared Stringvar Missing;


If {vwJobTimeFields.Op/WC} = '1' then {vwJobTimeFields.BayTime} = TimeInBay;TimeInBay;
If {vwJobTimeFields.Op/WC} = 'MTH201' then {vwJobTimeFields.BayTime} = MatHandl;
If MatHandl = 0 then Missing = 'Missing WC MTH201'


The above formula exists in a single _TimeFields formula in a subreport.. How can i get the 3 Variables to show on the main report as their own fields...
ASKER CERTIFIED SOLUTION
Avatar of Mike McCracken
Mike McCracken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Michael Katz

ASKER

You are as always awesome