Calculation using Time questions does not auto-populate when submitting survey from browser.
ArcGIS Survey123
漏洞 ID 编号
BUG-000172494
已提交
November 21, 2024
上次修改时间
December 16, 2024
适用范围
ArcGIS Survey123
找到的版本
3.21
操作系统
Windows OS
操作系统版本
10.0 64 Bit
状态
As Designed
经开发团队审核,已确定此行为符合设计。 有关详细信息,请参阅“其他信息”部分。
附加信息
This is by design. Refer to this documentation https://doc.arcgis.com/en/survey123/desktop/create-surveys/decimaldatetime.htm for more information.
To ensure that surveys work consistently in both the field app and the web app, use ISO 8601 format or decimal time in date and time calculations.
For example the calculation below only works in ArcGIS Survey123 field app:
int((${end_time} - ${start_time}) div (1000*60))
However, using decimal-time format in the same calculation works in both field app and web app:
(decimal-time(${end_time}) - decimal-time(${start_time})) *24 *60