I have two columns of data, one is strictly numerical (other than the header) and the other displays a text string depending on the nested if. My problem is that I want to find the number of times each of the 3 text possibilities correspond to each numerical value.
Column D contains either 5, 6, or 7
Column L. contains either "Vacant', "SAR Match", or "SAR Mismatch"
the formula
=COUNTIFS(Merge!L:L,"Vacant",Merge!D:D,5)
returns "0" but a countif for "Vacant" and "5" return 24 and 3 respectively
I'm guessing the problem lies in counting a text and number combination. Is there a way around this issue?
Column D contains either 5, 6, or 7
Column L. contains either "Vacant', "SAR Match", or "SAR Mismatch"
the formula
=COUNTIFS(Merge!L:L,"Vacant",Merge!D:D,5)
returns "0" but a countif for "Vacant" and "5" return 24 and 3 respectively
I'm guessing the problem lies in counting a text and number combination. Is there a way around this issue?