Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
nareshthavidishetty
Creator III
Creator III

Filter selection won't reflect objects

Hi,

Am having a requirement like the filter selection wont effect the value inside the text object like if the user selects an month the text object won't reflect

1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

Add {1} in your expression.

=Count( {1} ItemName)

View solution in original post

13 Replies
sunny_talwar

Restrict the text box expression using set analysis:

{<Month =, OtherFields = >}

tamilarasu
Champion
Champion

Add {1} in your expression.

=Count( {1} ItemName)

Chanty4u
MVP
MVP

please share the sample qvw?

did u given that  value in textobj as

=urfield()

MindaugasBacius
Partner - Specialist III
Partner - Specialist III

Use set analysis.

Take a look at https://community.qlik.com/docs/DOC-4951

Your expression in text object should have an identifier  {1}

For example:

Sum({1} [Sales]) : sum of everything (All dimensions are completly reset to All).

amit_saini
Master III
Master III

Naresh,

Like this???

Thanks,

AS

nareshthavidishetty
Creator III
Creator III
Author

Hi,

This logic =Count( {1} ItemName) won't work for the below logic


=Count({1}{<Channel = {'In-store'}>} DISTINCT ApplicationNbr)

sunny_talwar

It should, you just need to fix the position of your 1

=Count({1<Channel = {'In-store'}>} DISTINCT ApplicationNbr)

tamilarasu
Champion
Champion

Sunny has corrected your expression. Always try to provide some example, so that we can help you better.

nareshthavidishetty
Creator III
Creator III
Author

Hi

Below expression wouldn't work mens it reflects to selection

= num(Count({1<[ApplicationStatus] ={'Approved'},FiscalYear={'2016-2017'}>} DISTINCT ApplicationNbr)/count(DISTINCT(ApplicationNbr)),'##.00%')