为列表创建共享点工作流程时是否可以使用此功能?
我有一个共享点列表,其中有一个数字列称为 xyz 我正在为该列表创建一个共享点设计器工作流程 列表项,我想在其中使用更新此列表项操作
如果我们选择操作作为更新此 然后选择列表作为当前项目 然后选择设置此字段-> XYZ 到这个值-> {我如何在这里选择 xyz - 1 的当前值}即变量公式
I have a sharepoint list that has a number column call xyz
i am creating a sharepoint designer workflow for that list
in which i want to use update this list item action
if we chose actions as update this list item
then chose the list as current item
then chose set this field -> xyz
to this value -> { how can i select here current value of xyz - 1 } i.e a variable formula
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
分两步进行。首先,声明一个工作流变量(我在这里将其称为“样本”)。
然后,添加工作流程步骤“执行计算”并将
sample
设置为xyz-1
。设计器显示的文本行将类似于Calculate:xyz minus 1 (Output to variable:sample
)。然后,将 xyz 值设置为
sample
的当前值代码>.Do it in two steps. First, declare a workflow variable (I'll call it "sample" here).
Then, add a workflow step "do calculation" and set
sample
toxyz-1
. The text line Designer shows you will look likeCalculate <workflow name>:xyz minus 1 (Output to variable: sample
afterwards.Then, set the xyz value to current value of
sample
.