想要将 2d 矩阵转换为 google sheet 中的另一个 1d 输出

Want to convert 2d Matrix to the another 1d output in google sheet

所以想把2d的4*4矩阵转换成1d的矩阵,同时具备矩阵的两个特征。 https://docs.google.com/spreadsheets/d/1li0SIZapKHCYCO1EAr8YJMlGaZV-Uj8TRD3JgQUU_pI/edit?usp=sharing 这个link应该多解释一下。

我的想法是,我想从数据旁边有列 header 行 header 的矩阵中提取超过 100 的数据。

你能帮帮我吗?首选无脚本解决方案。

感谢和问候

可能是这样

=query(arrayformula(split(flatten(A2:A8&"|"&B1:G1&"|"&B2:G8),"|")),"select * where Col3 > 100")