在Spotfire中仅删除某个值

时间:2017-07-06 16:33:10

标签: spotfire

我正在尝试在标题为“位置”的列中绘制数据。 此列包含以下数据:“左”,“右”,“中心”和“ - ”。不幸的是,当3个中没有一个适用时,我拉动的数据会自动输入“ - ”。 当列只有1个值时,我能够删除“ - ”,但是在保持“Left”,“Right”或“Center”的值时,无法找出表达式将“ - ”更改为null不变。 任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:2)

添加计算列并使用Substitute(Arg1, Arg2, Arg3)

Substitute([Column],"--","")

Spotfire Reference

Replaces all occurrences of Arg2 in Arg1 with Arg3. 
The search is case sensitive.

Example:
Substitute("Test","t","ting") 
Returns:
"Testing"