更改Spotfire中的列值

时间:2018-06-04 11:00:21

标签: spotfire

我正在尝试使用以下字符串值替换Spotfire中列的所有值(类型:int):

1.
.1
1.1
.

我是Spotfire的初学者,有人会知道怎么做吗? THX

1 个答案:

答案 0 :(得分:1)

单击“插入”,选择“计算列”,然后将其与其他案例一起粘贴到表达式框中。

case when [old_col] = 1 then 'a'
when [old_col] = 2 then 'dog'
...
end