简体   繁体   English

谷歌电子表格importxml并继续

[英]google spreadsheet importxml and continue

I do simple spreadsheet for my target - monitoring prices in Eve Online market. 我为目标制作了简单的电子表格-监控Eve Online市场中的价格。 I use eve-central api and try import data from it. 我使用eve-central api并尝试从中导入数据。 I use importXML function: 我使用importXML函数:

=(ImportXML(CONCATENATE(Sys!$B$4;A1;Sys!$C$4);"//sell/min"))

where: CONCATENATE(Sys!$B$4;A1;Sys!$C$4 - formatting url adress. 其中: CONCATENATE(Sys!$B$4;A1;Sys!$C$4格式化网址地址。

How you can see I recieved data from eve-central, but I can't translate this data to number format. 您如何看待我从eve-central接收了数据,但无法将此数据转换为数字格式。

I tried to use 我尝试使用

=SUBSTITUTE(ImportXML(CONCATENATE(Sys!$B$4;A1;Sys!$C$4);"//sell/min");".";",")

but it failed. 但是失败了。 I tried using =CONTINUE function, but it's incorrect - this function doesn't exist(???). 我尝试使用=CONTINUE函数,但这是不正确的-该函数不存在(???)。 How can I receive data from eve-central, and work with this data as value? 如何从eve-central接收数据,并将其作为价值来使用?

It's hard to tell what you doing since we can't see what the url address you're using is. 很难告诉您您在做什么,因为我们看不到您使用的网址是什么。 Here's a simple price DB sheet that I use. 这是我使用的一个简单的价格表。

This pulls in all the sell data for whatever item ID was in B2 and only for the Jita system (30000142). 这会为B2中的任何物料ID提取所有销售数据,并且仅针对Jita系统(30000142)。 The sell data is actually 7 pieces of data put in the next 7 columns. 卖出数据实际上是放在接下来的7列中的7条数据。

  • Column C is volume (total number of items up for sell orders I believe). C列是数量(我相信可以卖出的订单总数)。
  • Column D is average sell price of all sell orders. D列是所有卖单的平均卖价。
  • Column E is highest sell order price (Max). E栏为最高卖出订单价格(最高)。
  • Column F is lowest sell order price (Min). F列是最低卖出单价(最低)。
  • Column G is the standard deviation of prices. G列是价格的标准偏差。
  • Column H is the median price. H列是中位数价格。
  • Column I is the percentile. 第一列是百分位数。

I then use vlookups to pull this data to other spreadsheets. 然后,我使用vlookups将这些数据提取到其他电子表格中。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM