QlikView:Using dimensions value in expression

Salik picture Salik · Nov 27, 2013 · Viewed 10.8k times · Source

I am trying to figure out how can I use dimension values as one of the set modifiers in Expressions in qlikview. Consider the following:

Raw Data:
PName, count
AB,2
BC,3
CD,4

Dimension:
Name

Expression:
SUM(<{PName=Name}>count)

i-e using the dimension value as one of the set modifiers.

Thanks

Answer

smartmeta picture smartmeta · Nov 28, 2013

As @bdiamante said. It is not clear what you exactly want to do.

But I assume that you only want to use the current value of the dimension to calculate the count of names. If that is true, then you can simply say:

Expression:
=sum(count)

HTH