I am creating a spreadsheet for a banking institution to calculate incentive payments based on the number of transactions entered in a single month. The calculation I am having trouble with is determining the number of days the teller actually worked in the month based on the dates that transaction were entered by the individual teller. I have three columns of information that I need to extract information from. Column "A" includes all tellers initials, Column "B" includes all transaction codes completed in the date range, and Column "C" includes all dates transaction were entered. The frequency formula,
=SUM(IF(FREQUENCY(c6:c65000,c6:c65000)>0,1)) will give me the number of unique dates in the date range, but I also need to determine this for each individual teller. I have tried a variety of "IF" combinations, but cannot get them to combine both criteria. I want to use an array formula if possible. Any suggestions?
=SUM(IF(FREQUENCY(c6:c65000,c6:c65000)>0,1)) will give me the number of unique dates in the date range, but I also need to determine this for each individual teller. I have tried a variety of "IF" combinations, but cannot get them to combine both criteria. I want to use an array formula if possible. Any suggestions?