如何在Excel或Open Office CALC中筛选出重复的行(按特定列)?

时间:2013-10-19 08:31:21

标签: excel excel-2010 openoffice-calc

我想在Excel / Open Office CALC中过滤掉这样的行:

    Here is My Table Structure 

   Emp_No and Note Added are the column names 



  Emp_no.                Note added

    10             salary due by 13th Oct

    10                salary pending

    10                  salary paid

    10                salary not paid

    23                   salary paid  

    23         salary not paid for 2 months

    23             salary due this month

现在,我想只保留 Emp_No 包含 10 的行中的第一个 ROW ,并且只保留第一个从包含 Emp_No 值的下一组值 23 开始

简而言之,我想要一个像这样的输出:

   Emp_no.               Note added

    10             salary due by 13th Oct
    23                   salary paid  

请帮助!!

1 个答案:

答案 0 :(得分:0)

使用辅助列此公式:

=IF(B1=B2,"",B2)  
在Row2中的

并向下复制应选择Emp_no.中的第一个实例(每个更改),如果它在ColumnB中。

使用这些公式过滤选择(空白)列应该选出Emp_no.与上面的行相同的所有行 - 此时可以删除它们以实现显示的结果根据所提供的数据样本的要求。