문제

I have 2 lists,
ankenlist: have some "anken", each anken have a "total", "total" mean amount of work to be done.
report: each record link to an anken, with a "Done",
I want to do like this: each time user add a record to "report" list, the associated anken in AnkenList will be updated with formula UPDATE SET AnkenList.SumDone = SUM(Report.Done) WHERE AnkenList.AnkenID = Report.AnkenID
I've create 2 lists and a workflow as below, but the workflow complete without any output.
Can you help me troubleshot it?
2 lists workflow run result

도움이 되었습니까?

해결책

The AnkedID in the list is a Lookup, so the string will never match the ID, because it will be 3;#anked1, so essentially you will never get to the conditional logic. You need to parse that out by returning the lookup value instead of returning "As String", return as lookup value.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top