Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Dupes not showing on the table box


Hi All,

I need help to display a dupe record on the table box. In my current process i loaded my data from an excel file, where i have 2 records with same data that i want it to display on the table. Somehow only showing once. Please help.

CompanyIDDate 1ActivityTypeDate 2Amount
ABC999908884/13/2011FeeMisc4/13/2011-100.50
ABC999908884/13/2011FeeMisc4/13/2011-100.50

Many Thanks,

Frank

1 Solution

Accepted Solutions
qlikmsg4u
Specialist
Specialist

HI Frankie,

Add RowNo() in script that will solve your problem.

ex:

load*,RowNo() as RowNo;

load * Inline [

A,B,C

1,2,3

1,2,3];

View solution in original post

2 Replies
qlikmsg4u
Specialist
Specialist

HI Frankie,

Add RowNo() in script that will solve your problem.

ex:

load*,RowNo() as RowNo;

load * Inline [

A,B,C

1,2,3

1,2,3];

Anonymous
Not applicable
Author

It works. Thank You!

Frank