Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show Distinct Values in Chart

Hello,

I created this chart as below. The data model was built from two tables "Case" and "Report", linked with Case_ID as primary key. Case_ID and Report_ID are dimensions, the rest of data fields are expressions.

Since there are NULL values in the Case_ID, so I have the expression =If (not IsNull([Case Number]) AND not isnull(Report_ID),[Case Number]) for Case_ID.

There are duplicated values in "Report_ID" field. I wasn't sure why those duplicated values exsit as there is no duplicated value in the table "Report". I would like only show distinct values which not only the chart will look better and clean, as well as I will have an accurate values in "Submission Count".

Case_IDReport_IDSubmitted DateSubmission Count
2003-0509603035/9/20031
-603035/9/20031
2004-0615605066/15/20041
2005-0820805048/20/20051
-805048/20/20051

tried this in script (while loading data fields from Report table), but doesn't work.

LOAD
Distinct REG_REPORT_ID ,

REG_REPORT_ID as Report_ID.


I am not sure if try =count({$<[Submission Count] =  {'1'}>}  >}   distinct Report_ID) would work for this case. Becuase I also want to eliminate those duplicated rows.

What will be your suggestion to help me solve this issue?

Thanks for your help in advance,

Becky

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hi yun,

Why do you have same report_id on one null case and one not null case?

I suggest you to hide null values:

Regards!

View solution in original post

10 Replies
Anonymous
Not applicable
Author

Hi Becky,

Can you share your qvw and data files with us ?

florentina_doga
Partner - Creator III
Partner - Creator III

use in chart

aggr(count(DISTINCT if(len(Case_ID)<>0,Case_ID)),Report_ID,SubmittedDate)

Anonymous
Not applicable
Author

Hi yun,

Why do you have same report_id on one null case and one not null case?

I suggest you to hide null values:

Regards!

Anonymous
Not applicable
Author

This seems strange when you mention there are no duplicates in your report table. Can you share your application as there may be an issue with any join in your script which is causing the duplicates in your data model.

Not applicable
Author

Thank you Manuel,

I have the same Report_ID on one null case and one not null case? ...Where I did it?

I remember that I tried "Suppress When value is Null" but doesn't work that time.

But I am glad it working now.

Best,

Becky

effinty2112
Master
Master

Hello,

          I'm guessing that it's only in the Report source table you have null Case_ID. If so I would load your Report table with the line

Load

.

.

if(isnull(Case_ID),'Missing', Case_ID) as Case_ID

.

.

Then you can select 'Missing' as Case_ID and you can investigate the Reports that have no associated Case.

Alternatively you can omit these orphans altogether by adding a suitable WHERE clause to your load script for the Reports table. WHERE Exists(Case_ID) will ensure only reports with a case will be loaded.

The biggest problem you have, I would suggest, lies not with the chart but with the source tables.

Good luck

Andrew

Not applicable
Author

Thanks Brain for your response. I tried Manuel's way just click the  "Suppress When value is Null" which didn't work before. Then it works... not duplicated values and no null values...

Not applicable
Author

Thanks Filip for your response. I tried Manuel's way just click the  "Suppress When value is Null" which didn't work before. Then it works... not duplicated values and no null values...

Anonymous
Not applicable
Author

Hi Yun,

You have 60303 report ID for 2003-0509 Case ID and Null Case ID. The same for 80504 Report ID.

Regards!