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

Distinct values not required

Hi Community,

I have data for ex like below

Type,Val

A,10

A,10

A,10

B,20

B,20

B,21

I need same as above in the straignt table, my observation is when I checked in the table box it is appearing like below

Type,Val

A,10

B,20

B,21

so How can I show the output in straght table like below

Type,Val

A,10

A,10

A,10

B,20

B,20

B,21

-Priya

1 Solution

Accepted Solutions
PrashantSangle

In your script add rowNo() while loading data.

Like

Load RowNo() as rowId,

* from Table;

In front end straight table take all field and In presentation tab Hide rowId column.

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

2 Replies
PrashantSangle

In your script add rowNo() while loading data.

Like

Load RowNo() as rowId,

* from Table;

In front end straight table take all field and In presentation tab Hide rowId column.

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
senpradip007
Specialist III
Specialist III

Have a look at this.