Hello all!
I have a trouble with one formula. The idea is, that I need to find an engineer name in AT LEAST (that's why I am using OR) one of the columns. The problem is, that the second range is a contact list so I need to use a FIND formula. So the mix looks like this:
=COUNTIFS({WTE}, $[Task Name]@row, OR({Assigned}, FIND($[Task Name]@row, @cell)>0),
I know its incorrect, it writes to me that it's unparsable.
Because of how COUNTIFS are read through, your OR function is being looked at as a range, with FIND being the criteria to search in that range.
Your best bet may be to sum 2 COUNTIF functions together so that you can account for both instances.
=COUNTIF({WTE}, $[Task Name]@row) + COUNTIF({Assigned}, FIND($[Task Name]@row,@cell)>0)
Thank you! But in that case it will count in both ranges and it will sum up. But I need the $[Task Name]@row counted only once (If its found in the first column, don't count it if its also in the second column). Thats why I was trying to use OR on the ranges.
ref must be one of: categoryID, siteSectionID, category, category/categoryID, category/name, category/description, category/url, category/allowedDiscussionTypes, locale, siteSection, siteSection/basePath, siteSection/contentLocale, siteSection/sectionGroup, siteSection/sectionID, siteSection/name, siteSection/description, siteSection/apps, siteSection/attributes, layoutViewType, discussionID, commentID, page, sort, discussion, discussion/name, tags, breadcrumbs, discussionApiParams, serverDraftID, serverDraft.