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 <br /> in the pdf

Solved Solved
0 2 82
1 ACCEPTED SOLUTION

Try this:

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

<<EndIf>>

Or this:

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

"))>>

View solution in original post

2 REPLIES 2

Try this:

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

<<EndIf>>

Or this:

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

"))>>


THANKS!@Markus_Malessa 

This one works perfectly!!

 

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

<<EndIf>>

 

 

this didn't work:

 

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

"))>>

 

 


 

Top Labels in this Space