Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
Can any one please help me on below scenario.
I have 4 input files.
Config File is the Main Table.
PG,Capabily and Coverage are the Subtables.
Here only first left join is working. please help me on this.
when PG is not null then PG hours comes under Hours field.
When PG and Capability is null then Hours related to Coverage comes under Hours field.
When PG and Coverage is null then Hours related to Capability comes under Hours field.
Thanks in advance,
Why join the tables? You can let QV associations do all the work for you.
You will need to rename the hours fields to prevent them being associated. you could do this by using Qualify Hours before loading the tables.. Then you will get 4 tables associated by PG, Capability and Coverage. Your expression could then be
=Alt(PG.Hours, Capability.Hours, Coverage.Hours)
Dear Bhavani,
Please find the attachment for required output.
Thanks & Regards,
Neha Malekar
Why join the tables? You can let QV associations do all the work for you.
You will need to rename the hours fields to prevent them being associated. you could do this by using Qualify Hours before loading the tables.. Then you will get 4 tables associated by PG, Capability and Coverage. Your expression could then be
=Alt(PG.Hours, Capability.Hours, Coverage.Hours)
Don't dump for single solution Re: Left join Help