Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Count
Message
From
21/09/2004 13:40:29
 
 
To
21/09/2004 02:39:59
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Re: Count
Miscellaneous
Thread ID:
00943945
Message ID:
00944645
Views:
16
thank you for reply,
it works,


You'r welcome.

i need another things ,i want to add the total of tel.lines to another field(count2)
via code under.
as..

clint_no(ncli) telno count 1 count 2
1 555 3 0
1 444 3 0
1 666 3 3 this is what i need to add to (mytable.count2)

2 555 6 0
. . . .

. . . 6 this is what i need to add to (mytable.count2)



SELECT ncli, COUNT(ncli) AS telno FROM active ;
GROUP BY 1 INTO CURSOR telno READWRITE
INDEX ON ncli TAG ncli
SELECT active
SET RELATION to ncli INTO telno
REPLACE ALL active.Count1 WITH telno.telno


Not sure I understand exactly what you are asking, but if you just want the total telnos for all customers:
SELECT Active
REPLACE MyTable.Count2 WITH RECCOUNT()
or, if you have deleted records in active:
SELECT COUNT(TelNo) FROM Active WHERE NOT DELETED() INTO ARRAY laTelNos
REPLACE MyTable.Count2 WITH laTelNos[1]
HTH
Jim
Jim
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform