Signature on Workflow report

Romain
New Member

Hi community,
I have an inspection workflow rule which generate a report when an inspection is finished.
The workflow condition is AND([Status]=“Closed”, [Signature]<>"")
This works correctly but the report is generated with a blank instead of the image of the Signature.

If I force a 2nd time, the image of the signature is on the report…

Is there any problem of delay because it is an Image
Here below the 2 results

When the normal Workflow send the report
2X_b_bab3d52d7570368d8317cba8d2e060184f80644c.jpeg

When I force a 2nd time
2X_4_4616aeac4edef410650c1dbf16c5b15ef1280e58.jpeg

Solved Solved
0 12 847
1 ACCEPTED SOLUTION

It sounds that your workflow is triggered when you update the record with the Status change. At that point you don’t have the signature yet. Try to add a condition rule like…
AND(
ISNOTBLANK([Signature]),
[_THISROW_BEFORE].[Signature]<>[_THISROW_AFTER].[Signature]
)

View solution in original post

12 REPLIES 12
Top Labels in this Space