Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
sqlpuzzle
Contributor III
Contributor III

Checking Date equality in expression

I am trying to get this expression right.

What I need is the value 'Close' whe the 'begindate' = Min('begindate). My expression below is in error. What is the right expression.

= Num( ( { < begindate =  { Min([begindate]) } >} Close) ,'##.#0')

Thanks

1 Solution

Accepted Solutions
sunny_talwar

May be this

= Num(Sum({<begindate =  {"$(=Min({<Close = {'*'}>}[begindate]))"}>} Close) ,'##.#0')

View solution in original post

3 Replies
Frank_Hartmann
Master II
Master II

maybe this:

= Num( sum( { < begindate =  { '=Min([begindate])' } >} Close) ,'##.#0')

sqlpuzzle
Contributor III
Contributor III
Author

But it is summing all the values.Not sure why the begindate = Min(begindate) filter is not getting applied.

sunny_talwar

May be this

= Num(Sum({<begindate =  {"$(=Min({<Close = {'*'}>}[begindate]))"}>} Close) ,'##.#0')