满足条件的行号查找
原文英文,约200词,阅读约需1分钟。发表于: 。Problem description & analysis: We have a statistical table for daily sales of January 2022: Task: Find out the dates with daily sales greater than 1,000. Solution: Enter the following...
我们有一份2022年1月的每日销售统计表,任务是找出销售额超过1000的日期。解决方案是使用SPL XLL代码:`=spl("=E(?1).pselect@a(Sales>1000)",A1:B32)`。`pselect@a()`返回所有满足条件的行序号,而`pselect()`只返回第一个满足条件的行序号。