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: 
seahyanzheng
Contributor III
Contributor III

Ignoring selection

Hi Qlikview community,

May i ask why Salesperson and Sales Emp ID is not getting ignored as it should be:

= FirstSortedValue(

Salesperson,-aggr(count({$<ACCEPTANCE_DTTM={"*"}, [Salesperson]=,[Sales Emp ID]=,[Sales Team 1]=,%ProcessingType={'Acceptance'},

%BaseType={'Acceptance'},HL_TL_IND={1}>} [CASE_NUM]),[Sales Emp ID]))

Thanks!

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Try this way?

= FirstSortedValue(

{$<ACCEPTANCE_DTTM={"*"}, [Salesperson]=,[Sales Emp ID]=,[Sales Team 1]=,%ProcessingType={'Acceptance'}, %BaseType={'Acceptance'},HL_TL_IND={1}>}

Salesperson,-aggr(count({$<ACCEPTANCE_DTTM={"*"}, [Salesperson]=,[Sales Emp ID]=,[Sales Team 1]=,%ProcessingType={'Acceptance'},

%BaseType={'Acceptance'},HL_TL_IND={1}>} [CASE_NUM]),[Sales Emp ID]))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

2 Replies
Anil_Babu_Samineni

Try this way?

= FirstSortedValue(

{$<ACCEPTANCE_DTTM={"*"}, [Salesperson]=,[Sales Emp ID]=,[Sales Team 1]=,%ProcessingType={'Acceptance'}, %BaseType={'Acceptance'},HL_TL_IND={1}>}

Salesperson,-aggr(count({$<ACCEPTANCE_DTTM={"*"}, [Salesperson]=,[Sales Emp ID]=,[Sales Team 1]=,%ProcessingType={'Acceptance'},

%BaseType={'Acceptance'},HL_TL_IND={1}>} [CASE_NUM]),[Sales Emp ID]))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
seahyanzheng
Contributor III
Contributor III
Author

Thank you! ^^