【发布时间】:2023-03-12 01:45:01
【问题描述】:
我在 G 列中使用了这个公式
=IF(ISBLANK(A3),"User missing",IFS(C3=E3,0,E3="","Empty Data",C3<>E3,"Wrong Data"))
将此公式应用于 30k 数据会使我的工作表变慢。需要转成脚本。
由于 If 和 IFS 在同一个公式中使用,我很难将其转换为脚本。
条件:
If Column A is Empty then "User Missing"
If A have data,
then condition is
If E is empty then "Empty Data"
If C and E is not equal then "Wrong Data"
If C and E is equal then 0
【问题讨论】:
标签: javascript google-apps-script google-sheets