I'm trying to sum data from another sheet based on date range. My formula that I have is not summing the information. Summing PTO Taken (Jan until today) and Planned Days (today until the end of the year). Employee provides: 1) Start Date 2) End Date of their PTO and 3) Number of Days off. If Today's Date is within the Start/End Date of PTO, both formulas below don't sum the "Number of Days off". What am I missing?
Leaves Taken: =SUMIFS({Number of Days}, {Name}, @cell = [Executive Name]@row, {Start Date}, @cell >= [Reconcile Notes]$24, {End Date}, @cell <= [Reconcile Notes]$22 + 1, {SLT PTO List of Requests Range 1}, "PTO/Annual Leave")
Planned Days: =SUMIFS({Number of Days}, {Name}, @cell = [Executive Name]@row, {Start Date}, @cell >= [Reconcile Notes]$22, {End Date}, @cell <= [Column9]$27, {Type of Leave}, "PTO/Annual Leave")