I have two text columns. One column contains titles of documents. The second column contains specifies the document's "category." One of the categories in the "Category" column is "Presentations." However, in that category are two different types of presentation: "BDM" and "TDM". Whether a document is a BDM or TDM is called out in its title.
I need to count the total number each of BDM and TDM. Normally, I would use something like:
=COUNTIFS(Category:Category, "Presentations", Title:Title, "*BDM*")
But, Smartsheet does not recognize wildcard characters. I tried using this:
=IF(CONTAINS("BDM", Title:Title), COUNTIF(Category:Category, "Presentations")
but I got 0 results (which I know is not accurate).
I also tried a suggestion from another thread:
=COUNTIFS(Category:Category, FIND("BDM", Title:Title))>0) but got an error.
Lastly, I tried:
=IF(CONTAINS(Title:Title, "BDM"), COUNTIF(Category:Category, "Presentations")) - got another error.
Any suggestions much appreciated!