从表格中导出特定数字
Export specific numbers from Sheets
So i have this column of numbers and i wish to extract only the numbers before the "HE" text for example, this is what i need,我真的不知道如何实现。
也许有一种方法可以使用公式或命令来执行此操作,我一直在尝试使用电动工具附加组件但无济于事我没有得到它。
也许为了澄清,每个单元格中有 2 行,使用 alt+enter。
REGEXEXTRACT()
适合这种情况。
=REGEXEXTRACT(A1,"(.+) HE")
一些关于 REGEXEXTRACT()
的好技巧 here。
对于数组方法,使用下面的公式-
=ArrayFormula(IF(A1:A="","",REGEXEXTRACT(A1:A,"(.+) HE")))
So i have this column of numbers and i wish to extract only the numbers before the "HE" text for example, this is what i need,我真的不知道如何实现。
也许有一种方法可以使用公式或命令来执行此操作,我一直在尝试使用电动工具附加组件但无济于事我没有得到它。
也许为了澄清,每个单元格中有 2 行,使用 alt+enter。
REGEXEXTRACT()
适合这种情况。
=REGEXEXTRACT(A1,"(.+) HE")
一些关于 REGEXEXTRACT()
的好技巧 here。
对于数组方法,使用下面的公式-
=ArrayFormula(IF(A1:A="","",REGEXEXTRACT(A1:A,"(.+) HE")))