Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
May be this
= Num(Sum({<begindate = {"$(=Min({<Close = {'*'}>}[begindate]))"}>} Close) ,'##.#0')
maybe this:
= Num( sum( { < begindate = { '=Min([begindate])' } >} Close) ,'##.#0')
But it is summing all the values.Not sure why the begindate = Min(begindate) filter is not getting applied.
May be this
= Num(Sum({<begindate = {"$(=Min({<Close = {'*'}>}[begindate]))"}>} Close) ,'##.#0')