Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
NetDateTime,Peek('NetDateTime') As Peek,UserFROM....
Peek gives me here the 'highest' datetime that is found .. regardless of the user.
What i want is the Peek of NetDateTime where the user is equel to the user of the current record that is loaded
Thanks in advanced
You need to get a sorting into it and check for your condition. Script may look like
NetDateTime,IF(User = PEEK(User), PEEK(NetDateTime)) AS Peek,UserFROM ...ORDER BYUser ASC,NetDateTime DESC;
HTHPeter