如何强制在矩阵中显示测量名称?

huangapple go评论68阅读模式
英文:

How to force measure name to display in the matrix?

问题

我的矩阵只包含一个度量。如何强制它的名称显示在表格上?

我将计算的分组显示为列。

如何强制在矩阵中显示测量名称?

英文:

My matrix consists of one measure only. How would I go about forcing it's name to display on the table?

I am displaying calculated groups as columns.

如何强制在矩阵中显示测量名称?

答案1

得分: 1

你可以右键点击表格并创建一个新列。

Dax 代码:

Col_Matrix_Title = "这是我的矩阵行标题"

然后将这个新列拖动到矩阵可视化的“行”字段上。

更新:

要移除上述行标题的列标题,你可以这样做:

在可视化 > 特定列中,
将所有系列的文本颜色设置为黑色。

  • 打开“应用于标题”
  • 打开“应用于值”

在可视化 > 列标题中,
将文本颜色设置为白色。

英文:

You could right click your table and create a new column.

Dax code:

Col_Matrix_Title = "This is my Matrix row Title"

Then drag this new column on to the Rows field on the Matrix visual.

UPDATE:

To remove the Column header for the above row title you can do this:

Under Visual > specific column >
Set the text color to black for all Series.

  • Turn on Apply to header

  • Turn on apply to values

Under Visual > Column headers

  • Set the text color to white

huangapple
  • 本文由 发表于 2023年6月6日 12:50:48
  • 转载请务必保留本文链接:https://go.coder-hub.com/76411524.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定