Hi,
I am having a datatable like this:
Id Name Result
1 MyApp1 Pass
1 MyApp1 Fail
2 MyApp1 Pass
2 MyApp2 Fail
5 MyApp2 Fail
I need to extract three informations out here
Id Name and total number of Pass/Fail
in this case:
O/p is
Id Name Total Number of Pass case
1 MyApp 1
2 MyApp1 2
Basically group by records based on ID here