This works but.....

  • Thread starter Thread starter scorpion53061
  • Start date Start date
S

scorpion53061

select SLSMN, sum(SALESAMT) from yourtable Group By SLSMN

will work when pulling data from a SQL database table. It totals all
salesman's sale amounts and groups it by them.

How could I acomplish this in a datatable where I have already added the
rows but without having to send the rows to the database?
 
scorpion53061 said:
select SLSMN, sum(SALESAMT) from yourtable Group By SLSMN

will work when pulling data from a SQL database table. It totals
all salesman's sale amounts and groups it by them.

How could I acomplish this in a datatable where I have already added
the rows but without having to send the rows to the database?

This is not a VB.NET language question, so please turn to
microsoft.public.dotnet.framework.adonet.
 
You are right of course and I apologize.

Armin Zingler said:
This is not a VB.NET language question, so please turn to
microsoft.public.dotnet.framework.adonet.
 
Back
Top