Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Report Data Sources
Message
 
 
To
09/08/2000 14:55:49
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
00402582
Message ID:
00402986
Views:
9
>Your solution has proved very usefull but I've run into another problem. In the select statement under the Count clause (Count(*) As nNumberOfRecords) can I include an expression that would filter certain entries.
>
>I was thinking about using something to the tune of:
>
> Count(*) for carrier="46" as nNumberOfRecords
>
>but that hasn't worked.
>
>Any suggestions?
>
>Thanks
>Kris H

Put it into where clause of select statement, e.g.

select *, count(*) as nNumberOfRecords from yourTable where YourCondition and carrier='46' into cursor curReport
If it's not broken, fix it until it is.


My Blog
Previous
Reply
Map
View

Click here to load this message in the networking platform