JamesFlowers
Programmer
I have a report that produces this format of data
Val Real_ship Val_valid_from
0.11 20/02/2001 01/03/1999
0.01 20/02/2001 01/01/2001
0.02 20/02/2001 01/02/2001
the record I require is line three (as the Real_Ship is after the Val_valid_from)
I need to select the latest date of Val_valid_from
I have tried maximum(Val_valid_from) and this returns [NEEDS A BOOLEAN].
how do I select the latest Val_valid_from? to return just
Val Real_ship Val_valid_from
0.02 20/02/2001 01/02/2001
Many Thanks in advance
James Flowers
Val Real_ship Val_valid_from
0.11 20/02/2001 01/03/1999
0.01 20/02/2001 01/01/2001
0.02 20/02/2001 01/02/2001
the record I require is line three (as the Real_Ship is after the Val_valid_from)
I need to select the latest date of Val_valid_from
I have tried maximum(Val_valid_from) and this returns [NEEDS A BOOLEAN].
how do I select the latest Val_valid_from? to return just
Val Real_ship Val_valid_from
0.02 20/02/2001 01/02/2001
Many Thanks in advance
James Flowers