使用流过滤共享点列表中的日期时间字段

时间:2019-08-28 15:56:25

标签: sharepoint-online

我有一个Sharepoint,其日期时间字段格式为d / m / yyyy。

我已连接到Sharepoint,并希望使用过滤器查询选项来查找月份和日期与当前月份和日期相同的项目?流将遍历列表中的每个项目并发送生日快乐消息。

“ formatdatetime(DateofBirth,'MM')eq formatdatetime(utcnow(),'MM')”。这失败了。

1 个答案:

答案 0 :(得分:0)

要比较流程中的两个日期,您需要在“获取项目”步骤下添加“过滤器数组”步骤。过滤器数组中的表达式如下:

@equals(formatDateTime(item()?['TestDate'], 'MM-dd'), utcNow('MM-dd'))

“ TestDate”是我的专栏。

赞:

enter image description here

参考:

https://powerusers.microsoft.com/t5/Building-Flows/How-to-compare-two-dates-by-month-in-a-quot-get-items-quot/m-p/151219#M15179