在importData函数后替换文本

时间:2017-02-21 22:06:43

标签: google-sheets

我在Google Spreadsheet中使用importData函数来导入外部csv文件。它有效,但我想替换表格中的一些文字。

如果替换文本没有错,则有一个功能:

SUBSTITUTE("search for it","search for","Google")

问题:当我尝试使用SUBSTITUTE时,我收到错误:

  

数组结果未展开,因为它会覆盖A3

中的数据

有没有办法导入csv并替换文档中的文本?

1 个答案:

答案 0 :(得分:0)

您可以使用arrayformula并与importdata一起替换以替换或删除数据。例如,我用它来替换'='和双引号用空格:

=arrayformula(substitute(SUBSTITUTE( IMPORTDATA("https://ct.thecmp.org/app/v1/index.php?do=match&task=downloadMatchResultsDetail&MatchId=12504&EventId=4&AwardId=1") ,char(61) , "" ),char(34),""))