Hello..
can anyone help in count duplicate value group by InventLocationId ?
The original table like that
Here every inventlocationId has one salesId but when I Wrote next code
insert_recordset EGCSOCountTMP02 (InventLocationId,CountRec) select InventLocationId,count(RecId) from EGCSOCountTMP01 group by InventLocationId;
the previous count gave me for Ex. U-Sw-Nahia-15 = 4 even it the same salesId
what i result need is U-Sw-Nahia-1 = 1 salesId
Thanks
*This post is locked for comments