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

Assist in set analysis ?

Hi All,

Please kindly assist me to get the result correct.

When I not selecting the Policy Number the 'Postal Address Province' is not count the null in image 2. Though in the first image it is showing null.

1.

1.PNG

2.

2.PNG

 

But when I am selecting the Policy Number it is working correct.

sample model attached.

 

Thanks,

5 Replies
Yoshidaqlik
Creator II
Creator II

Hello, how are you?

I even downloaded the file but it is different from the images.

what expression are you using?

 

Regards

YoshidaQlik https://www.youtube.com/channel/UC1I9P8MqCZEhB6Nw3FdSqng
DavidM
Partner - Creator II
Partner - Creator II

As stated above, your app doesn't contain the charts you're showing on the pictures.

Adding to this, I've looked at your data model - field 'Postal Address Province' doesn't contain any data, matter of fact, the whole DWQMV_POSTAL_ADRESS table is empty, as well as many others. I suppose this is due to usage of wrong where conditions.

The charts you are showing are in this case right, the count/sum is 0, as there is no data.

sagarjagga
Creator
Creator

You can replace the Postal Address Province with 0 and then count it.
E.g Count(distinct if(Len(Trim(Province))=0,0,Province))
suvechha_b
Creator III
Creator III
Author

Hi All ,

I can't replicate the problem in sample model as my original model size is big. 

My report chart got null Policy Number as well.

When I selected no Policy Number the report below for Policy Number 'PA000014'  has no Postal Address Province.

clipboard_image_1.png

 

I used the expression to count when the field is null.

COUNT(DISTINCT if(len([Postal Address Province])< 1, [Policy Number]) )

clipboard_image_2.png

But the expression is only working when the Policy Number is selected.

clipboard_image_3.png

 

But in my requirement , I don't need to show the Policy Number, I need to report per Partner how many Policy Number has missing Postal Address Province].

agigliotti
Partner - Champion
Partner - Champion

in your qvf it seems to works as expected.