I\'ve got a list of People that are returned from an external app and I\'m creating an exclusion list in my local app to give me the option of manually removing people from the
var result = Data.Where(x => { bool condition = true; double accord = (double)x[Table.Columns.IndexOf(FiltercomboBox.Text)]; return condition && accord >= double.Parse(FilterLowertextBox.Text) && accord <= double.Parse(FilterUppertextBox.Text); });