Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

Solution

Hi all ,

I m facing with one issue, i.e

See below data.

Table1:

Load Tic_No,

      CallDate,

      Branch,

      Division,

      Region

From ,,,,,,,,

Table 2:

Load Tic_No,

        MobleNo,

        Base_Id   

From,,,,,,

Table 3:

Load Base_Id,

        Address

from,,,,,,,,,

What i want is, i want MobleNo and Address in table 1 with same Tic_No Count for All Div , region and branch.

I did Like this:

Table1:

Load Tic_No,

      CallDate,

      Branch,

      Division,

      Region

From ,,,,,,,,

Left Join

Load Tic_No,

        MobleNo,

        Base_Id   

From,,,,,,

Table 3:

Load Base_Id,

        Address

from,,,,,,,,,

But its Not working.Please Give me some valid solutions.

11 Replies
gautik92
Specialist III
Specialist III

can yu post the qvw appl?

sasiparupudi1
Master III
Master III

may be try group by

Table1:

Load Tic_No,

      CallDate,

      Branch,

      Division,

      Region

From ,,,,,,,,

Left Join(Table1)

Load Tic_No,

        MobleNo,

        Base_Id   

From,,,,,,

Join(Table1)

Load Base_Id,

       concat( Address,',')

from,,,,,,,,,

group by Base_Id

;

hth

Sasi