Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Microsoft Flow 来获取过去两周的所有日历事件,并且每两周执行一次。问题是“获取所有事件”outlook 操作仅接受 ODATA $filter 查询,并且不清楚如何动态过滤它,例如:
$filter=Start ge Today()-14
这甚至可能吗?谢谢!
尝试使用以下条件构建IF语句
StartDate ge @{adddays(utcnow(‘yyyy-MM-dd’), -14, ‘yyyy-MM-dd’)}
请在MS 文档中找到更多信息。