Anyone,
I have a grid that has five columns and three of them are hidden. The two columns that are visible display a customer name and a location, and because of the nature of the data in the dataset these columns can display the same information in several rows. What I would like to be able to do is "filter out" the duplicate information. Is there anyway to be able to do this on the grid?
Thanks for any help.
Kris
Hi Kris,
There's nothing built-in to the grid to filter out duplicates. But you could code this yourself by looping through the row and setting the Hidden property to true on any rows you want.
Hi Mike,
Thanks for the response. That is exactly what I ended up doing, but I thought I might have missed some setting that might do it automatically for me.