Ill sum up the issue as simply as I can, please let me know if you need more information.
I have a cell column that is referencing two dates to gather the amount of days between them. That formula is as follows - =IF(B2=0, "", DATEDIF(B2,C2,"d")+1 & " Days"
)
B2 and C2 are starting date and ending date.
I am trying to count cells that are greater than a specific number. As an example, I want to tally up all cells that are greater than 20 days. The formula I am trying to use is - =COUNTIFS ($Page2.D2:$Page2.D1201, ">=20", $Page2.N2:$Page2.N1201, "Dog")
D2:D1201 is the range of cells that the first formula is in, and for full transparency of the formula N2:N1201 is just a separate condition to the countif function.
I have attempted many different ways of doing things including wildcards and the full “20 Days” but its not accurate.“20 Days” Gives me way too many results. “20” Gives me an empty result. Anything single digit, 1 to 9, counts every cell regardless. The only way Ive been able to get results that I assume are accurate is if I remove the & " Days" Function but Im hoping to keep the text addition in as it makes things much easier on the eyes to see at a glance what its referencing.
I’m sure the answer is simple but Im not too experienced in this type of thing and just flying by the seat of my pants.