function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
BdoggBdogg 

Apply Workflow question

Hi I am a newbie and need some help with a workflow.  Hopefully I will explain it well enought.  I have an Object (order line) that has several lines (products) listed in it.
I setup a workflow for to check for a false value in a field (Ship) Obect:(Order Line).  If false make update object:(order) field (DS2) = true.  The rule works well as long as all the lines (products)  have the same data, but if one of the products is true and one is false then it marks the (Order)(DS2)true.  Is there anyway in a workflow to tell it that everything in the Object (Order Line) must equal true for it to update Order DS2.
Please let me know if this isn't clear. Thanks for any help.

sunfishettesunfishette

What kind of field is Product?

  If I understand you right, if the SHIP checkbox is FALSE then DS2 should field update to TRUE.

 

  This is working except if the ORDER LINE has different inputs.

 

It sounds like you should have multiple criteria?

IF order line1 IS NOT Null and

    order line2 IS NOT Null and

    order line3 IS NOT Null

 

Anyway, can you explain a little more?  I am still not sure what you are trying to do.

Thanks

T.