PowerBI - 从文本字段中删除特殊字符和后续编号

时间:2018-01-10 11:56:14

标签: powerbi

我正在尝试从文本字符串中删除特殊字符(_)和以下数字。

例如,我在表1中看到了这样的列。

表1

Input Col 
Abc_1     
asd
fgh-abd_5
g_7

我的预期输出是,

Input Col Output Col 
Abc_1     Abc
asd       asd
fgh-abd_5 fgh-abd
g_7       g

1 个答案:

答案 0 :(得分:1)

https://community.powerbi.com/t5/Desktop/Removing-text-after-character-or-between-characters/td-p/182257

Split = LEFT( 'Table1'[Column]; 
       SEARCH("_";'Table1'[Column]; 1; 
           LEN('Table1'[Column])-1
         )-1
     )