My countifs statement is this
=COUNTIFS({Tech 1}, $Tech@row, {Start 1}, <=[6.00]$1, {End 1}, >[6.00]$1)
and the formula in the column it's looking in is this
=IF(AND(Split@row = 1, [Required Staff]@row > 1), IFERROR(LEFT([Tech 1 Hours]@row, FIND("-", [Tech 1 Hours]@row) - 1), [Start Time]@row), [Start Time]@row)
As long as the split value is =0, the countifs works, but if the split value is 1, it doesn't count it even if all the conditions are met
Am I missing something?