Hi everyone,
I have the following table below:
artikelnr dates a b c
1 01.01.2020 10 7 1
1 02.01.2020 null 5 2
1 03.01.2020 null 4 3
1 04.01.2020 null 9 4
2 01.01.2020 20 10 4
2 02.01.2020 30 20 3
2 03.01.2020 null 15 2
I would like a select giving me the "latest" values of a,b and c
so if the condition is dates between "02.01.2020" and "04.01.2020" then the result should be
1 04.01.2020 null, 9, 4
2 03.01.2020 30 , 15, 2
is that possible with one command?
Thanks ever so much in advance.
Kingsley