Sign in to join the conversation:
I am trying a SUMIFS formula without much success. The formula needs to return the Distance if Completed Date is before 31/03/20 and Signs has been ticked/checked.
Distance (number)
Completed date (date)
Signs (checkbox)
Is this possible?
Thanks
Faz
It is and the following works:
SUMIFS(Distance:Distance, [Completed Date]:[Completed Date], <DATE(2020,3,30), Signs:Signs, 1)
Does it work in your case?
Hi Chakm, I'm afraid not - it says #UNPARSEABLE
Hi Faz,
Chak's formula should work. Try my second one and see if that works.
Try something like this.
=SUMIFS(Distance:Distance; [Completed Date]:[Completed Date]; <DATE(2020; 3; 30); Signs:Signs; 1)
The same version but with the below changes for your and others convenience.
=SUMIFS(Distance:Distance, [Completed Date]:[Completed Date], <DATE(2020, 3, 30), Signs:Signs, 1)
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
I re-did Chak's formula and it worked. I think the issue was because the column was labelled Distance (miles) - the extra brackets were probably confusing the formula. Column renamed (without brackets ).
Thanks so much Chak (and Andree too).
Excellent!
Happy to help!
Andrée
Hello, I am stumped again. I am looking to average data from another sheet and am getting a #Divide by Zero error, even though I believe the formula is written to ignore zeros and blanks in the data. What am I missing? =AVG(COLLECT({Indirect Project Summary -Avg Leadtime}, {Indirect Project Summary - Executive Sponsor},…
Hi all. I am working with a sheet trying to get what - I thought - would be a simple average, but the formula seems to be returning the incorrect value. I am trying to get an average of the temperature in a column if the created date (created date is the Smartsheet default column) is equal to yesterday: Which I would…
Hi everyone, I’m trying to automatically change the Status to red once the deadline is reached. I placed the following formula directly in the Status column: =IF([Ende]@row <= TODAY(), "Red", [Status]@row ) However, I keep getting the error #CIRCULAR REFERENCE. My understanding is that this happens because the formula is…