如何更改 Google Data Studio 中的文本值?
Posted
技术标签:
【中文标题】如何更改 Google Data Studio 中的文本值?【英文标题】:How can I change the text values in Google Data Studio? 【发布时间】:2022-01-20 09:26:24 【问题描述】:我有一个名为duration_type
的字段可以包含以下值,我想在我的图表中将它们显示为expected_values
字段:
duration_type | expected_values |
---|---|
weekly | Week |
monthly | Month |
annual | Year |
【问题讨论】:
【参考方案1】:创建一个新的expected_values
字段并创建CASE
语句:
CASE
WHEN duration_type = "weekly" THEN "Week"
WHEN duration_type = "monthly" THEN "Month"
WHEN duration_type = "annual" THEN "Year"
END
【讨论】:
以上是关于如何更改 Google Data Studio 中的文本值?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 android studio 更改 Google 地图中“我的位置”按钮的位置
如何从 BigQuery 下拉列表中绘制多个日期到 Google Data Studio
如何在Google表格中为Google Data Studio数据源存储布尔值?