Hi,
I am trying to create a "select expert" based on a formula to give me 2 different results based on the boolean.
My conception is like this:
if ({Option03}) = True then {jobdtl.jobcomplete} = true else if ({Option04}) = True then {jobdtl.jobClosed} = true else if
({Option03} and {Option04}) = True then ({jobdtl.jobcomplete} and {jobdtl.JobClosed}) = true
Basically i want it as:
if Option03 is True then make Jobdtl.Jobcomplete True as well or else
if Option04 is True then make Jobdtl.JobClosed True as well
else if both options are True then make Jobcomplete and jobclosed true.
Am i writing this properly? Any advise will be greatly appreciated...