I have a Google Sheet which requires time to be submitted for different people. I recently had a SUMIFS on another sheet adding the time together based on today() function. The formula I was using is as follows:
=SUMIFS('Annual Data'!N:N,'Annual Data'!G:G,"name of person",'Annual Data'!B:B,TODAY())
- N:N – Time
- G:G – Name
- B:B – Date
As mentioned this was previously working as expected but not it only returns value '0'. The column for 'Time' is formatted to Number.
As an example if John Smith completed the form twice with 5 minutes each. The column in the other sheet would display 10. No idea why this has stop working but it's driving me insane.
Best Answer
Your formula is syntactically sound therefore the issue is likely with your data. Did you copy and paste and/or change the formatting?
I suspect the problem is something like your times are now formatted as text strings, or your dates are actually dates and times.
Troubleshooting
time<>0
in Column N"name"="name of person"
in Column Gdate=TODAY()
in Column B.