本文介绍了Google 表格:从 IMPORTDATA() 拆分多行带分隔符的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用来自
在第二个公式中,我添加了 SPLIT(),但它只返回第一行,在本例中是标题.
我之前使用 INDEX( SPLIT( QUERY( IMPORTDATA() ))) 的组合返回了仅当前价格的数据,但最终只拆分了一行.
有没有办法在一个单元格中使用一个公式拆分所有行?
解决方案
尝试:
=INDEX(SPLIT(IMPORTDATA(url_here"), ;"))
I'm getting historical data for a cryptocurrency using an API from CoinAPI which returns multiple rows, but each row consists of delimited text:
In the second formula I added SPLIT(), but it only returns the first row, which in this case is the headers.
I've previously returned data for just a current price using a combination of INDEX( SPLIT( QUERY( IMPORTDATA() ))), but that was only splitting one row in the end.
Is there a way to split all the rows using one formula, in one cell?
解决方案
try:
=INDEX(SPLIT(IMPORTDATA("url_here"), ";"))
这篇关于Google 表格:从 IMPORTDATA() 拆分多行带分隔符的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!