Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
CASE
WHEN
ROW_NUMBER()
OVER(
PARTITION BY
A,
B,
C
ORDER BY
A ASC,
B ASC,
C ASC
) = 1
THEN
"Duration"
ELSE NULL
END
Hi team..This is the oracle code.. Can anyone let me know, how can we use the same in qlikview UI part not in script side..
I would add A, B, C as dimensions, sort them in ascending order (first by A, then B, then C) and then may be this as your expression
If(RowNo() = 1, 'Duration')
I would add A, B, C as dimensions, sort them in ascending order (first by A, then B, then C) and then may be this as your expression
If(RowNo() = 1, 'Duration')
Excellent Sunny, as usual.. Thanks for your help..