최근 검색
최근 검색 없음
Custom Count Metric - Help with old code
답변함
2022년 5월 19일에 게시됨
Hi all,
my predecessor created a custom "count" metric, which should only include tickets with specific tags. Looks like this:
IF (
INCLUDES_ANY([Ticket – Tags],
"%tag1",
"tag2",
"tag3",
"%tag4",
)) THEN [Ticket-ID] ENDIF
My question now is, what does this percent symbol (%) mean?
0
1
댓글 1개
Gab Guinto
% is a wildcard character and can be used to search for values containing a particular string of text (Finding tickets that contain a specific string in one of their tags). In that formula, %tag1 and %tag4 will look for tags that ends with tag1 and tag4, e.g., premiumtag1, test-tag1, ticket_tag4.
0
댓글을 남기려면 로그인하세요.