I would like to count how many of my orders do not have PO number (i.e Po Number cell is blank)
Can you help with the formula to do this
Thanks
Try this formula.
=COUNTIFS([PO Number]:[PO Number], ISBLANK(@cell))
Make sure your column title is PO Number. If it's different update my formula to match.
I would suggest adding in additional criteria for another column that is always populated. That way your formula doesn't include the blank rows at the bottom of the sheet.
If you have a date type column that will always have a date in it regardless of whether or not there is a PO Number, you could use something along the lines of...
=COUNTIFS([PO Number]:[PO Number], ISBLANK(@cell), [Date Column]:[Date Column], ISDATE(@cell))
I have a sheet with a list of customers in one column, and then the following columns are City, Monday, Tuesday, Wednesday, Thursday, Friday. I need help with a formula that I can put in my sheet summary so that if the customer column says Staples (It can say this in multiple rows) that it will tell me the total package…
In my sheet, I have a filter for 2 values (see below images). The result is 294 In my report this formula yields 304. =COUNTIFS({helper-child}, "1", {gapStatus}, <>"Rejected (not a GAP)", {gapStatus}, <>"removed - duplicate", {gapStatus}, <>"removed - not valid") Why are they not matching? What am I missing?
I have a schedule that has a task name column, a date column and a task type column. I am trying to build a formula (in another sheet) that will return the latest date based on when the task type is "APP" and the task name contains "GS" somewhere in the cell. Here is the formula I have come up with: MAX(COLLECT({Schedule…