Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to display Duplicate records !!!!!


Hi All

Can any one help me how to display duplicate records in front end.

tab1:

Id    name

1     robert

2     john

innerjoin

tab2:

id    lastname

1     jack

2     dev

1     ford

1     das

output is:    id     Name           Last Name

                 1       robert           jack

                 1       robert            ford

                 1       robert            das

now i need to see those 3 ones in front end please help me....

1 Solution

Accepted Solutions
maxgro
MVP
MVP

create a straight table chart with

dim

Id,    name, lastname

expression

if(count(TOTAL <id> name)>1, 1)

you can hide the expression in presentation tab

View solution in original post

9 Replies
its_anandrjs
Champion III
Champion III

You are using right inner join see the load script

tab1:

LOAD * Inline

[Id,    name

1,     robert

2,     john

];

inner join

tab2:

load * Inline

[Id,    lastname

1,    jack

2,     dev

1,     ford

1,     das

];

And on table box plot values

Id, name, lastname

And why you want to display only those 3 values.

alexandros17
Partner - Champion III
Partner - Champion III

tab1:

LOAD * Inline [

Id,    name

1 ,    robert

2 ,    john

];

inner join

tab2:

LOAD * Inline [

id,    lastname

1 ,    jack

2 ,    dev

1 ,    ford

1 ,    das

];

You can show data with a table or a chart (in this case add as expression the value 1)

Not applicable
Author

Hi Alessandro

I Think There is no concept of right inner join in qlikview...

Not applicable
Author

Add a expression field in a straight table - =RowNo()

maxgro
MVP
MVP

create a straight table chart with

dim

Id,    name, lastname

expression

if(count(TOTAL <id> name)>1, 1)

you can hide the expression in presentation tab

alexandros17
Partner - Champion III
Partner - Champion III

What do you mean with right inner join??

The instruction I gave to you is a inner join so only matching records on matching fields will be taken

Not applicable
Author

Thank you Massimo.

Not applicable
Author

Thank you all.

Not applicable
Author

why dont you just concatenate id and lastname as calculated dimension and hide it