Hi all,
I'm trying to use SUMIFS in Smartsheet to sum actual hours for individuals between two dates. I'm using two sheets, one is the front facing table and the other is the raw data. I've tried this forumla which worked in excel, but won't work in smartsheet?
=SUMIFS(sum_range, individual_range, criteria1, date_range, ">=" & D3, date_range, "<=" & E3)
Could you help please?
sum_range
: The range of cells containing the actual hours individual_range
: The range of cells that you want to evaluate against criteria1
criteria1
: The name of the individual you want to sum the actual hours for.date_range
: The range of cells containing the dates.- D3: The cell reference containing the starting date of the date range you want to include in the sum.
- E3: The cell reference containing the ending date of the date range you want to include in the sum.