在尝试实现以下操作时,我总是收到类型不匹配错误或除以零错误:我只想计算一个范围内唯一条目的数量,该范围内的条目是“类”文本:
startRow = 3
startColumn = 1
col = "A"
Set topCell = Cells(startRow, startColumn)
Set bottomCell = Cells(Rows.Count, startColumn)
If IsEmpty(bottomCell) Then Set bottomCell = bottomCell.End(xlUp)
Set selectRows = Range(col & topCell.Row & ":" & col & bottomCell.Row)
nRows = WorksheetFunction.CountA(selectRows)
test = WorksheetFunction.SumProduct(WorksheetFunction.IsText(selectRows) / WorksheetFunction.CountIf(selectRows, selectRows))
我在测试计算中有一个错误,但我不明白。一些帮助非常感谢
非常感谢
BR马丁