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

Filter

Hi Expertise ,

Iam using  the below expreesioon in a straight table ..and there are 4 expression like the below..

I have 3 filters ( Dept, Agency,Date)

=Sum({<PeriodType={'CurrentOpen'},DefectCountLoadDate={">=$(=Date(addmonths(Max(DefectCountLoadDate))))"}  >} OpenCount)


Now i want to exclude the selection made for the filter "Agency " in the straight table and other filters should work normally .

And there are different tables  which should reflect the changes normally

How can i acheive this Please Expertise help me

Thanks in Advance

1 Solution

Accepted Solutions
Anil_Babu_Samineni

You can do even with Max

Date(Max({$<Agency= >} DefectCountLoadDate), 'MMM-YYYY')

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

5 Replies
Anil_Babu_Samineni

Like this?

=Sum({$<Agency=, PeriodType={'CurrentOpen'},DefectCountLoadDate={">=$(=Date(addmonths(Max(DefectCountLoadDate))))"}  >} OpenCount)

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
smilingjohn
Specialist
Specialist
Author

Hi Anil ,

In a caption iam using The date accordingly ,

How should i use the same here ?

Date(Max(DefectCountLoadDate), 'MMM-YYYY')

?

Anil_Babu_Samineni

You can do even with Max

Date(Max({$<Agency= >} DefectCountLoadDate), 'MMM-YYYY')

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
Kushal_Chawda

try this

Date(Max({<Agency>}DefectCountLoadDate), 'MMM-YYYY')

smilingjohn
Specialist
Specialist
Author

Thanks a lot Anil Sir