I am trying to get a count for a date range, but am getting a number that is one less compared to the filter.
Current Tuesday Formula: =IFERROR(TODAY() + (3 - WEEKDAY(TODAY())) - IF(OR(WEEKDAY(TODAY()) = 1, WEEKDAY(TODAY()) = 2), 7, 0), "")
Previous Tuesday Formula: =IFERROR(TODAY() - 7 + (3 - WEEKDAY(TODAY() - 7)) - IF(OR(WEEKDAY(TODAY() - 7) = 1, WEEKDAY(TODAY() - 7) = 2), 7, 0), "")
Total Count Formula: =COUNTIFS([Date Entered by Vendor]:[Date Entered by Vendor], AND(@cell >= [Previous Tuesday]#, @cell <= [Current Tuesday]#))
Here is the row that is not being caught in the formula.