尝试在 Google Data Studio 中创建一个仅在列表名称以 US 开头时才有效的字段

Trying to create a field in Google Data Studio that only counts if the name of a list begins with US

我正在尝试在 Google Data Studio 中创建一个字段,用于汇总以 US 开头的列表的收入。我知道我必须使用正则表达式,但它继续告诉我公式有一个意想不到的结尾。

这是代码。

    Revenue WHERE REGEXP_MATCH(List, '^US')

如果您有任何问题,请告诉我。

谢谢!

您可以使用

WHERE REGEXP_MATCH(List, '^US.*')
                             ^^

甚至

WHERE REGEXP_MATCH(List, 'US.*')

REGEXP_MATCH documentation:

  • REGEXP_MATCH attempts to match the entire string contained in field_expression. For example, if field_expression is "ABC123":
    REGEXP_MATCH(field_expression, 'A') returns false.
    REGEXP_MATCH(field_expression, 'A.*') returns true.