IF Empty Statement with Static Text

Hello,

Fairly easy one here… Working with ifempty( 72. sq ft existing ; 72. Sq Ft New). How do I include static text within the if empty statement? I want to always include “Sq Ft” after the if empty variable.

Thank You

You can’t use ifempty in that case.

You can use the built-in function if with length

e.g.:

{{ if(length(1.text) > 0; 1.text + " sq ft Existing"; 1.text + " sq ft New") }}

For more information, see https://www.make.com/en/help/functions/general-functions#if--expression--value1--value2-

2 Likes

Thank you. Based on your response what am I doing wrong here?

image

The closing bracket for length is missing.

1 Like