Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
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..

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

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

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