Excel 2016 年:查找一列中 5000 到 6000 之间缺失的数字

Excel 2016: Find Numbers That Are Missing From 5000 to 6000 in one column

我有一列 (A),其中的数字按顺序从 5000 到 6000。现在,缺少一些数字。例如,下面的列中缺少数字 5004。

  1. 5000
  2. 5001
  3. 5002
  4. 5003
  5. 5005
  6. 5006
  7. ...
  8. 6000

因此,号码 5004 丢失了。我怎样才能找到所有丢失的号码?

如果你想要很多,那么把它放在第一个单元格中,然后 copy/drag 向下:

=IFERROR(AGGREGATE(15,6,ROW(INDIRECT("5000:6000"))/(ISERROR(MATCH(ROW(INDIRECT("5000:6000")),A:A,0))),ROW(1:1)),"")

如果您有 Office 365 Excel 并且您希望将它放在一个单元格中,请使用此数组公式:

=TEXTJOIN(",",TRUE,IF(ISERROR(MATCH(ROW(INDIRECT("5000:6000")),A:A,0)),ROW(INDIRECT("5000:6000")),""))

作为数组公式,退出编辑模式时需要用Ctrl-Shift-Enter确认,而不是Enter。如果操作正确,那么 Excel 将在公式周围加上 {}


如果您没有 Office 365 Excel,但您仍希望将它放在一个单元格中,那么您将需要 vba。

将此 UDF 放入附加到工作簿的模块中,并使用上述 TEXTJOIN() 公式。

Function TEXTJOIN(delim As String, skipblank As Boolean, arr)
    Dim d As Long
    Dim c As Long
    Dim arr2()
    Dim t As Long, y As Long
    t = -1
    y = -1
    If TypeName(arr) = "Range" Then
        arr2 = arr.Value
    Else
        arr2 = arr
    End If
    On Error Resume Next
    t = UBound(arr2, 2)
    y = UBound(arr2, 1)
    On Error GoTo 0

    If t >= 0 And y >= 0 Then
        For c = LBound(arr2, 1) To UBound(arr2, 1)
            For d = LBound(arr2, 1) To UBound(arr2, 2)
                If arr2(c, d) <> "" Or Not skipblank Then
                    TEXTJOIN = TEXTJOIN & arr2(c, d) & delim
                End If
            Next d
        Next c
    Else
        For c = LBound(arr2) To UBound(arr2)
            If arr2(c) <> "" Or Not skipblank Then
                TEXTJOIN = TEXTJOIN & arr2(c) & delim
            End If
        Next c
    End If
    TEXTJOIN = Left(TEXTJOIN, Len(TEXTJOIN) - Len(delim))
End Function