Hi everyone!
I have a question about filtering process.
I have an example excel and I want to get yellow marked rows inside of this DT.
example.xlsx (8.2 KB)
I use this formula but it doesnt work.
(From p in DT.Select() where( From q in DT.Select() where q(“Column4”).Equals(p(“Column4”)) and q(“Column5”).Equals(p(“Column5”)) Select q).ToArray.Count>1 Select p).ToArray.CopyToDataTable()
How to filter out yellow marked rows?