【发布时间】:2020-06-18 17:17:30
【问题描述】:
【问题讨论】:
【问题讨论】:
您似乎正在将Responses 与字符串"Approve" 进行比较。问题可能在于Responses 是许多单独的Response 记录的集合。 If you look at this Microsoft Doc,它显示了一个条件检查 Response 是否等于 "Approve"。请注意,Response 缺少尾随 s。
假设您有多个可能的Responses 来检查,并且您只需要一个"Approve" 响应来将它们添加到组中,you can use the solution proposed int this power user's forum:
使用过滤器操作来获取您的信息(一个带有 Approve other with 拒绝)
表达式为
item()?['approverResponse']然后使用表达式
length(dynamicontentfilterarray)得到你的结果(会给你批准或拒绝的计数)
【讨论】: