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?
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?