Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
vipingarg23
Creator
Creator

parttition equivalent to qlikview

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..

1 Solution

Accepted Solutions
sunny_talwar

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')

View solution in original post

2 Replies
sunny_talwar

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')

vipingarg23
Creator
Creator
Author

Excellent Sunny, as usual.. Thanks for your help..