Create advanced filter
I am trying to create an advanced filter in Excel from C# to copy unique data from one sheet to another, at least I get it in Excel and if I use Interop like this : Excel.Range rang = sheet2.get_Range("A2"); Excel.Range oRng = sheet.get_Range("I2", "I" + (lst.Count + 1)); oRng.AdvancedFilter(Excel.XlFilterAction.xlFilterCopy, CriteriaRange: Type.Missing, CopyToRange: rang, Unique: true); Works fine but I'm doing all my application with EPPlus and it will be better if I can do the same without Interop. So, it is possible? Since Advanced Filter is an excel function you need the full Excel DOM to