Hi all,
I have a datagridview with a set of rows which look like
no. name value
1 X 1
2 X 1
3 X 2
4 Y 1
5 Y 1
Now I want to filter the datagridview by value with respective to name and show only the best value under that name. For the above example I would expect my datagridview to show this:
no. name value
3 X 2
4 Y 1
5 Y 1
Can anyone help me in solving this please ...
thanks