How to combine Properties

Any way to set a property? Let's say {firstname==1} or {variableA==variableB}
Any way to combine properties into a new Property? Let's say {Z==X+Y}. {=Z} outputs "XY"

Or otherwise, can you say {clipboard} = {Requestor} or define the current clipboard content as a property to remember later, so you can move on to a new field and copy, to make more than one Property?

Thanks for any answers :slight_smile:

Hi, and welcome to the forum! :slight_smile:

Yes, you can combine variables. The "&" operator is used for string concatenation like in Excel ("+" is used for numeric addition).

{a="ABC"}
{b="XYZ"}
{z= a & b}
Z is {=z}

There is no way to assign to the Clipboard though.

1 Like