I am trying to count the number of payment dates that exist for a client, so I want to count the number of times a cell in a row is not blank.
The columns are not contiguous-there is another column between these that I have hidden. You can see in the # of Payments Received column that the formula I have entered is not returning correct results. For example, the second row should show a value of 5, but the formula returned a value of 0. Here is the formula I have entered:
=COUNTIFS([December Payment Date]@row, <>"", [February Payment Date]@row, <>"", [January Payment Date]@row, <>"", [March Payment Date]@row, <>"", [April Payment Date]@row, <>"", [May Payment Date]@row, <>"", [June Payment Date]@row, <>"", [July Payment Date]@row, <>"", [August Payment Date]@row, <>"", [September Payment Date]@row, <>"")
What changes should I make to get the calculations I am seeking?