Apr 13 2021 04:51 PM
Hi,
I'm using a formula that is trying to calculate the total number of items (or tickets) using COUNTIFS from a table based on 3 different criteria. However, the criteria for column W which is looking for the cell to be <> than empty is causing the total result to be wrong simply because all the empty cells from column W have a zero-length string in them.
The table is written via integration with Jira so unfortunately, how that's Jira writes the values - the cells look empty when they actually have an empty string, which totally messes up with my formulas.
I've tried to address the issue in several different ways but wasn't able to.
Please help!
I've attached a sample spreadsheet with the data and formula I'm using.
You'll notice the total from the formula is 3 when it should be 1 (the extra 2 there is because of the zero-length string issue I wasn't able to fix).
Thanks!
Apr 13 2021 07:33 PM
Apr 13 2021 08:00 PM
Try ">=A" as criteria.
Apr 14 2021 01:57 AM
As variant with third criteria it could be used something like =COUNTIFS(W:W,"=?*") which counts all cells which have at least one character, i.e. not blanks and not empty strings.