Community
Discussion Board for collaboration related to QlikView App Development.
Salutations Qliksters,
I have a question - is it possible to get the class() function to break down its segments into smaller incremental chunks?
For example:
By default the class(field, 3) function might return something like
0<=x<3
3<=x<6
6<=x<9
I am looking for my classifications to be something more like
1<=x<4
2<=x<5
4<=x<7
5<=x<8
etc, etc
Is this possible?
Regards,
S
@Sazabi
You can. In that case, your class would be overlapping. Try something like:
LoadIterNo(),Class(Num,3, 'x', Mod(IterNo()-1,2)) as Class,NumWhile IterNo()<6; Load *Inline [Num12345678910]