Using the coalesce function in an ArcGIS Survey123 calculation leaves empty values on feature layers if one of the fields is null when taken in the ArcGIS Survey123 web app.
ArcGIS Survey123
漏洞 ID 编号
BUG-000145905
已提交
January 11, 2022
上次修改时间
October 16, 2024
适用范围
ArcGIS Survey123
找到的版本
3.13
操作系统
Windows OS
操作系统版本
10.0 64 Bit
状态
Under Consideration
该问题已由开发团队审核。 其尚未被优先纳入发布计划,但将对其进行监控以确定总体影响。 在优先级排序过程中考虑的因素包括受影响或请求功能的用户数量、业务影响、是否存在解决方法等。 如果漏洞对您的业务产生不利影响,请参阅“操作方法:升级缺陷”(https://support.esri.com/en/technical-article/000024129)。
解决办法
The coalesce function works fine in the field app.
Adding the coalesce function before each field in the calculation resolves the issue with the web app. For example, instead of using coalesce(${input1}*${input2},0), use coalesce(${input1},0)*coalesce(${input2},0).