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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show all values

Hi,

I have a excel sheet with the following data.

CID Date Fact

1 22/06/2010 1

1 22/06/2010 1

If I create Table dashboard its showing only 1 record like this (elimanating the duplicate records).

CID Date Fact

1 22/06/2010 1

If I want to get 2 records in the table dashboard where is the option to select show duplicate values.

Thanks,

Labels (1)
7 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

Add RowNo() to the load to disambiguate the two rows like this:


LOAD
CID,
Date,
Fact,
RowNo() AS RowID
FROM DataSource;


Now include RowID in your table (you can hide that column)

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Thanks, but in table box dashboard we don't have hiding option.

Any best suggestion FYI..I am using 8.2 version.

Thanks,

Not applicable
Author

Hi there,

you can set the column to minimum size. You can also rename it with an space and make the font transparent or white.

Regards

jonathandienst
Partner - Champion III
Partner - Champion III

You could also use a straight table chart. Use all 4 fields as dimensions and an expression =1 as the expression. Then hide the RowID and expression columns.

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Actually I am using 8.2 version, so in straight table we don't have hiding option.

Thanks,

pover
Partner - Master
Partner - Master

Would it be reasonable to make the column as narrow as possible and change the text color to white so that you see any value?

I don't remember that hiding a column as somehting new between versions. To hide a column in a table you have to go to the Presentation tab below the list of columns. The hide option is not in the expressions tab like it is for other types of graphs.

Regards.

Not applicable
Author

I feel that we need to think in some technical way.

Thanks,