+1 vote

Something like [if Null(Object.Property)]abc[else]def[end]
or is this only for boolean properties possible?

by

1 Answer

0 votes

You can use [If], but your model needs to expose a property or a method:

[if IsSomeValueNull]Yes[else]No[end]

It's probably easier to expose the final text

Note that if property is null, dots are simply not followed:

"Hi [NullProperty.FirstName]," -> "Hi ,"
by (297k points)
...