Hello,
I need help! I have a sheet that shows multiple rows for each account with a status column and several product columns. On another sheet I want to count the number of rows containing the specific account ID where the status is "Active" and either the Product 1 or Product 2 cells are not blank. I have been successful counting the rows with just 1 product, but if I try to use the OR function to count if either of the cells is not blank I continue to get an error.
Here is the formula that was successful:
=COUNTIFS({Account Orders Range 3}, [Account ID]@row, {Account Orders Range 3}, "Active", {Account Orders Range 4}, @cell <> "")
I have tried using the OR function to add in the second Product cell to look for not blanks with this formula and have been unsuccessful:
=COUNTIFS({Account Orders Range 3}, [Account ID]@row, {Account Orders Range 3}, "Active", OR({Account Orders Range 4}, @cell <> "",{Account Orders Range 5}, @cell <> ""))
Do I just have a comma out of place, or is there an easier way to count the rows that contain:
- A specific ID value
- Have a specific "Status"
- Also have text in column 1 or column 2
?