user872744
user872744

Reputation:

During a workflow, calculated fields are not updated. Can this be done?

Szenario:

Let's say we have a list with these fields:

And we have a workflow which does this:

  1. Update Field T1 with the value of the lookup column
  2. Update Field T2 with the value of the calculated field C

Now the Problem:

It seems that the calculated field C does not get updated properly during the workflow.

Since in Step 1, the field T1 is updated, I've expected that the field C would automatically be changed in Step 2. But this is not the case. Can this behaviour be changed?

Upvotes: 0

Views: 3455

Answers (2)

Raymond
Raymond

Reputation: 175

Calculated field updates the value when you save an item OR when you change the calculation in the field setting.

You can change you workflow ,like this:

  1. Update Field T1 with the value of the lookup column

  2. Update Field T2 with the value of [T1] & [T2]

or

  1. Update Field T1 with the value of the lookup column
  2. Call item.Update()
  3. Update Field T2 with the value of the calculated field C

Upvotes: 1

AymKdn
AymKdn

Reputation: 3917

I don't think it can be change. However you could also set the C value in the workflow...

Upvotes: 0

Related Questions