Discussion Board for collaboration related to QlikView App Development.
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
May be use Calculated Dimension
If(Year >= 2017, Year) // Give it label as Year
May be use Calculated Dimension
If(Year >= 2017, Year) // Give it label as Year
Try like:
sum({<Year={$(>=(max(Year)))}>} [Your Field])
Try this in your dimension
=if(Year>=2017,Year)
Why 2014 is not displaying in your case?
By mistakenly I wrote 2014 in heading ..
Now correct it..