如何在 Google 表格中的查询公式中使用等效的 ABS?

How to using ABS equivalent in this query formula in Google Sheets?

公式将负数转换为正数,反之亦然,但我怎样才能让 Col8 中的所有数字都为正数?

=query(UNIQUE(IMPORTRANGE("https://docs.google.com/spreadsheets/d/ddddddddddddsssssssssssssssswwwwwwww/edit";"Sheet1!A1:K"));"select Col1, Col2, Col3, Col4, Col5, Col6, Col7, Col8*-1 where Col2 matches '"&B6&"' label Col8*-1 'Qtd' ")

这是 sheet

的副本

这里会有 ABS() 等价物吗?

谢谢!

尝试:

=INDEX(QUERY(UNIQUE({
 IMPORTRANGE("1uU9zw9BbXp5hOO1f8fZEcgc8f8u8uZNjoeeuHI3SBpM"; "Sheet1!A1:K")\ABS(
 IMPORTRANGE("1uU9zw9BbXp5hOO1f8fZEcgc8f8u8uZNjoeeuHI3SBpM"; "Sheet1!H1:H"))});
 "select Col1,Col2,Col3,Col4,Col5,Col6,Col7,Col12 
  where Col1 is not null label Col12'Qty'"))