Question

X and Requirement are existing attributes.

I want to create an attribute Z such that, for the given object, if Requirement=True, then Z={the value of attribute X}, but if Requirement=False, then Z={Object Heading and Object Text}.

What is the DXL for making this attribute? Thanks.

Was it helpful?

Solution

This is untested code but try something like this: (assuming attribute z exists as text)

Module m = current
Object o


for o in m do
{
   if ((o."Requirement") == "true")
   {
       o."z" = o."x" ""
   }
   else   // requirement = false
   {
       o."z" = o."Object Heading" "\n" o."Object Text" ""

   }
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top