I just resolved an issue thanks to @ppr
I have a data table with dates and prices (4rows)
First, I have to find wich one of the fourth is the most recent date and then collect the price from the column Price.
Thanks to @ppr he found me a way to select the most recent date. But I have an other issue : How to extract the Price link to this date.
Can anyone help me out please ?
Thank you for your answer but it’s not working.
I have the most recent date store in a string variable.
So I think (but i might be wrong) that in your formula, the ‘text’ is my string variable. But when I replace ‘text’ by my string variable.
I have an error message saying that I cannot convert string to int.
Sure. My dt_output is like following
DateColumn,Price
16.02.2019, 1.45
23.12.2020, 2.36
12.07.2018, 2.32
12.02.2011, 1.36
Then I have store into a string variable (str_RecentDate) the most recent date.
So now I need to collect the price link to the most recent date (so link to my str_RecentDate).