I have a column ("AM") in Excel that lists LPN values. There can be duplicate LPNs in this column.
I have another column ("DR") that contains numeric values.
I would like to count the number of LPNs in Range("AM8:AM" & lastRow) in which the values in Range("DR8:DR" & lastRow) are ">=3.00"
I would like to count each LPN only once, so no duplicate values in Range("AM8:AM & lastRow)
In this case, lastRow = Cells(Cells.Rows.Count, "A").End(xlUp).Row
I would like the count result to be displayed in Range("N5")
Any assistance would be greatly appreciated.
I have another column ("DR") that contains numeric values.
I would like to count the number of LPNs in Range("AM8:AM" & lastRow) in which the values in Range("DR8:DR" & lastRow) are ">=3.00"
I would like to count each LPN only once, so no duplicate values in Range("AM8:AM & lastRow)
In this case, lastRow = Cells(Cells.Rows.Count, "A").End(xlUp).Row
I would like the count result to be displayed in Range("N5")
Any assistance would be greatly appreciated.