Hi, how do I key in multi-line expressions in the Expression Editor? E.g. strings that require many concatenations that are very hard to read if placed all in one line
Hi @DEATHFISH
Try to use space and underline as end of pervious line, like below.
If(a>4,β4β, _
If(a>3,β3β, _
If(a>2,β2β, _
If(a>1,β1β, β0β))))
If you have one string is too long, use & to express it in multi-line as follows.
βUiPathβ _
& βStudioβ
Sometimes, underline can be omitted.
2 Likes