That needs the Group By 1 (or group by client) on it too.

-----Original Message-----
From: Stephen Russell
Sent: Thursday, March 18, 2010 4:20 PM

On Thu, Mar 18, 2010 at 2:57 PM, Sytze de Boer wrote:
> What's the quickest way
>
> *There's an indexed table
> 1
> Sele winhst
> seek myclient
> if found()
>   scan while client=myclient
>      lastinvoicedate=date
>   endscan
> endif
>
> 2
> select client,date from winhst where client=myclient into cursor temp
> if !eof()
>   go bott
>   lastinvoicedate=date
> endif
---------------------

 select client, MAX(date) from winhst
    where client=myclient into cursor temp
 if _Tally >0
your stuff here
endif



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/001401cac6da$9fc0bfe0$df423f...@com
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to