Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I am trying to identify duplicate values in an Excel 2003 column. If I am using the following code: myFormula = "=COUNTIF(E2:E" & LastRow - 1 & ",""=" & currentCDBID & """)" countDUP = Evaluate(myFormula) If countDUP 1 Then ... rest of my code... countDUP always returns "0" as result of the evaluate call (and in my spreadsheet there are obviously duplicate values) I thought I spotted the cause of the issue: countif requires a ";" as separator between the range and the criteria. So I transformed my code into: myFormula = "=COUNTIF(E2:E" & LastRow - 1 & ";""=" & currentCDBID & """)" countDUP = Evaluate(myFormula) If countDUP 1 Then ... rest of my code... And now countDUP always contains "Error 2015" which refers to a type mismatch. Does anyone know what is the cause of my problem ? Any help would be appreciated. Xavier |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Countif function Issue | Excel Worksheet Functions | |||
I have the following issue with COUNTIF | Excel Worksheet Functions | |||
COUNTIF Function issue | Excel Worksheet Functions | |||
Countif issue | Excel Worksheet Functions | |||
SumProduct CountIF issue | Excel Worksheet Functions |