如何通过 google sheet 为 importhtml 排序 sheet,使用查询未解决

how to Sort sheet for importhtml via google sheet, was using Query not solved

嗨,如何对 google sheet 行 运行 编号进行排序已由我们自动添加为自动通过 importhtml sync + 然后按降序排列行号 Z - A, A - Z OR 10 - 1 , 1 - 10 连续?

但是 table 名称 [否,版本,来源,发布日期,是测试版] - 不在第一行中排序..仅在第二行中排序:例如(B2),(C2), (D2),(E2)...

这里是我使用的代码:

=QUERY(
  IMPORTHTML(
   "https:// wabetainfo.com/updates/",
   "table",2),
  "select * offset 0",1)

我的意思是:可以制作;

如果我直接使用这个直接代码

IMPORTHTML("https:// wabetainfo.com/updates/", "table",2)

数据第二列是最新的更新 - 意思是 9 月 2 日....

现在我想进行最新的更新,使降序排序成为最后一列。

这意味着:

最后一行,列 = 最新更新

第二行,列 = 上一个/最早的更新..

全部

感谢帮助

尝试

=query(
{IMPORTHTML("https://wabetainfo.com/updates/", "table",2),
arrayformula(substitute(query(IMPORTHTML("https://wabetainfo.com/updates/", "table",2),"select Col3"),",","")*1)},
"select Col1,Col2,Col3,Col4 where Col1 is not null order by Col5")