Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set Analaysis to get the Name of the people

Hi ,

Currently we are using the Set Analysis to get the sum of the premium for all the years ">=" to the year selected. i.e If the year selected is 2011 I will use the set analysis to get the premium >= 2011. Given below the function I am using.

num# (round(Sum({$< Expiry_Year={">=$(vMaxYear)"} >} $(vGrossAmount))),'######')

Similarly, I want to display the name of all the employee for the year >= 2011 using set analysis or using any other function.

Could you all please advise how to do this in Qlikview  version 10.

Updated the sample qvw with explaining the problem

Thanks,

Sijo

2 Replies
SunilChauhan
Champion II
Champion II

thy this

if(Year>=2011,Name)

for dynamic

take var=max(year)

and then

if(Year>=$(var),Name)

hope this helps

Sunil Chauhan
Not applicable
Author

Hi Sunil,

Thanks for the update.

The above example will not work in my scenario as there will be always a year selected.

i.e We need to select a year (2011) from the list box and we need get the list of the names >= 2011. In the formula given above will only give the names for the year selected although we are putting '>='.