Spotfire:如何根据带有空白的列使用另一列来计算新列以帮助获得要插入的正确值

Spotfire: How to calculate a new column based off a column with blanks using another column to help get the correct value to insert

示例:

Name|Number|CALC
----|------|----
a   |123   |a
    |123   |a
a   |123   |a
a   |123   |a
b   |321   |b
    |321   |b
    |321   |b

我需要得到一个计算列,它将在名称列中找到与数字列中的正确数字相对应的非空值,以便我可以按名称筛选并获取所有数据。

您只需要 Max()Over 声明。

Max([Name]) over ([Number])