line break whitin formula in google doc template

Hi, im trying to add some line break if a condition is true in a template for make a pdf report.

the formula i use in google doc template is as follow:

<<IF([Cantidad de puntos]=3,”

",””)>>

but it returns no line break in pdf, any idea with this??

note: if i enter the line break whit shift+enter, it returns me
in the pdf

Try this:

<<If: [Cantidad de duntos] = 3>>

<<EndIf>>

Or this:

<<IFS([Cantidad de puntos] = 3, CONCATENATE("

"))>>
1 Like

THANKS! @Markus_Malessa

This one works perfectly!!

<<If: [Cantidad de duntos] = 3>>

<<EndIf>>

this didn’t work:

<<IFS([Cantidad de puntos] = 3, CONCATENATE("

"))>>