Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Action-Packed Learning Awaits! QlikWorld 2023. April 17 - 20 in Las Vegas: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
rahulsingh12
Contributor III
Contributor III

Set analysis

Hi,

In the dimensions I want Year value to always be greater than or equal to 2017.

Currently I have data from 2014.

It is possible to restrict the data in dimension level.


Regards

Rahul

1 Solution

Accepted Solutions
Anil_Babu_Samineni

May be use Calculated Dimension

If(Year >= 2017, Year) // Give it label as Year

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)

View solution in original post

5 Replies
Anil_Babu_Samineni

May be use Calculated Dimension

If(Year >= 2017, Year) // Give it label as Year

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
senpradip007
Specialist III
Specialist III

Try like:

sum({<Year={$(>=(max(Year)))}>} [Your Field])

prma7799
Master III
Master III

Try this in your dimension

=if(Year>=2017,Year)

year.png

Anil_Babu_Samineni

Why 2014 is not displaying in your case?

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
prma7799
Master III
Master III

By mistakenly I wrote 2014 in heading ..

Now correct it..