This is what I came up with, I think there is an easier way, but;
var prodList = (from col in list select col["Prod"]).Distinct().ToList();
var valueList = from col in list
group col by col["Value"] into g
where g.Count() == prodList.Count()
select g.Key;
That will give me all the values โโI'm looking for
source
share