Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi , In my qliksense application I have a tablular visual , where I have a dimension and a measure A, now if i add one more measure which is calculating above function of measure A , then it is working , if i add one more dimension then the above function does not work , Is above function works properly with multiple dimesion value
can you try by using aggr function along with above
Aggr(Above(Sum(Sales)), dim1, dim2)
Try this
Above(
Aggr(Sum(Sales), Region, Product)
)