Sign in to join the conversation:
I am trying to COUNTIFS but have been unsuccessful so far. I need to count the status of a project if it is a certain product. I keep getting #INCORRECT
=COUNTIFS(Status3:Status51, "Green", Product:Product, "Rapid Test")
Thanks.
Hi eswartz,
You're seeing the error because your 2 ranges are different sizes. The first range is dealing with 49 rows, while the second is looking at the whole column.
If you change the formula to the following, you'll be good:
=COUNTIFS(Status:Status, "Green", Product:Product, "Rapid Test")
To add to the above
Or you can keep the same column ranges for both the columns
=COUNTIFS(Status3:Status51, "Green", Product3:Product51, "Rapid Test")
Hello I am looking to create a Smartsheet formula that returns the following result: Column A "Created Date" - this column type is a Created date and show results with date and time Column B "Received Date" - this column would round up the "Created Date" and just show date, no time. If the "Created Date" was after 2:00pm…
Trying to create automatic sequential ID numbers based on the date to ship and where the sample goes. Have a general auto numbering Row ID, have (thanks to reading other questions and responses) figured out how to designate a year. Now I would like to number the Internal (INT) shipments separately from the external…
I have a sheet that has data displayed both horizontal and vertical. The primary data is horizontal (date) with information below each date, 4 rows of data. After the data the dates for the next set of data is horizontal with information below it vertical. 1/5/26 1/12/26 1/19/26 1/26/26 JP OS TT LL OS RT RR SS That data…