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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
brunodgarcia
Contributor II
Contributor II

Time Series: lowest value x time

Hi,

I have data in the following format:

Time     Company     Value

1          A                    100

1          B                    90

2          A                    95

3          A                    85

4          B                    86

I'd like to show a chart with the minimum value in time, like this:

Time     Value

1          90

2          90

3          85

4          85

I need to calculate the lowest value considering only the ones that have the time dimension smaller than the current line.

How can I do that in Qlikview?

Thanks for you help!

1 Solution

Accepted Solutions
sunny_talwar

May be this

RangeMin(Above(Min(Value), 0, RowNo()))

View solution in original post

2 Replies
sunny_talwar

May be this

RangeMin(Above(Min(Value), 0, RowNo()))

brunodgarcia
Contributor II
Contributor II
Author

Perfect! Thanks a lot!