Forum Discussion

HyperbaricFrontDesk's avatar
HyperbaricFrontDesk
Copper Contributor
Apr 30, 2025
Solved

I want to track individual times, but there can be multiply times in one cell

I've tried three different formulas but none of them are giving me the data I want. It seems with '=SUM' formula, it's also counting 16:00 when I only want 6:00, I don't even know what the '=COUNTA' ...
  • HansVogelaar's avatar
    May 01, 2025

    Do you want to count how many times the time 6:00 occurs?

    =SUM(--ISNUMBER(SEARCH(", 6:00, ", ", "&C10:C15&", ")))

    or using your first formula

    =LET(d, ", "&C10:C15&", ", t, ", 6:00, ", SUM(LEN(d)-LEN(SUBSTITUTE(d, t, "")))/LEN(t))