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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
smilingjohn
Specialist
Specialist

Explain

Hi All ,

Can someone explain me the below expression , please

what is happening .

What is Lead_SubCatergory doing  and what is Lead_Source ? what doesn {'*'}-... means

num(Count(DISTINCT

  {$<

  Date = {">=$(StartDate)<=$(EndDate)"},

  Dept= P(Dept_R),

         Lead_SubCategory={'Internet','Regional','Special Program','Dealer Sourced','Dealer Entered','Third Party'},

         Lead_Source={'*'}-{'Showroom','Phone','lmn','Dealer Third Party'},

                [Load]={'Phone','Email','Text'}       

  >} Cost_ID

  )),

Regards

John

1 Solution

Accepted Solutions
Anonymous
Not applicable

From your expression:

You are counting distinct Cost_ID which meets the following conditions:

1) Date falls between start & end date

2) All possible department available with regards of your selection like P(Dept_R)

3) Where Lead Subcategory is equal to : Internet','Regional','Special Program','Dealer Sourced','Dealer Entered','Third Party

4) Where Lead Source does not equal to ='Showroom','Phone','lmn','Dealer Third Party'

{'*'} means all the available values of fields

View solution in original post

2 Replies
Anonymous
Not applicable

From your expression:

You are counting distinct Cost_ID which meets the following conditions:

1) Date falls between start & end date

2) All possible department available with regards of your selection like P(Dept_R)

3) Where Lead Subcategory is equal to : Internet','Regional','Special Program','Dealer Sourced','Dealer Entered','Third Party

4) Where Lead Source does not equal to ='Showroom','Phone','lmn','Dealer Third Party'

{'*'} means all the available values of fields

smilingjohn
Specialist
Specialist
Author

Thanks Balraj

For your detailed explanation