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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to get Order_ID that don't have connection between 2 table?

How to make expression to get Order_ID that don't have connection between 2 table?

If i have Table A (contains ORDER_ID, SALES_ID) and table B (contains ORDER_ID, VALUE).

I want to get count(ORDER_ID) by dimension SALES_ID, but i don't want to get ORDER_ID have connection between 2 tables.

Can someone help me to make expression?

1 Solution

Accepted Solutions
Jason_Michaelides
Partner - Master II
Partner - Master II

Try:

Count(DISTINCT If(IsNull(VALUE),ORDER_ID))

How this helps,

Jason

View solution in original post

2 Replies
Jason_Michaelides
Partner - Master II
Partner - Master II

Try:

Count(DISTINCT If(IsNull(VALUE),ORDER_ID))

How this helps,

Jason

Not applicable
Author

Thanks