Is there a way to use COUNTIFS with LEN and more conditions. I want to count all rows that have a true value in column C and where the string in column B has a length of 17. So something like the snippet below but where the LEN()=17
condition actually works
COUNTIFS(Database!C:C;"=TRUE";Database!B:B;"LEN(Database!B:B)=17")
I am aware that I could use ARRAYFORMULA as suggested in Countif with len in Google Spreadsheet but try to do this without an additional column.