iteration_*1 + 1
Even though there is only one row displayed in the template,
this script adds a row for each variable.iteration_*1 < 4
Even though there is only one row displayed in the template,
this script creates four rows in the output.if ( iteration_* 1 == 1)
{
"Lorem ipsum dolor sit amet"
}
else
{
"short text"
}
This script enters the Greek text in the
first row and enters short text in all subsequent
rows.if ( iteration_* 1 == 1)
{
"consectetur adipiscing elit."
}
else
{
"short text"
}
This script enters the Greek text in the
first row and enters short text in all subsequent
rows.if ( iteration_* 1 == 1)
{
"Aliquam et arcu ut dolor dapibus dapibus ac non urna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ornare sollicitudin semper. Suspendisse accumsan accumsan nisi, et posuere ante rhoncus sit amet. Ut hendrerit, purus ut ullamcorper accumsan, orci eros accumsan lorem, ut fringilla nisi orci et nisi. Maecenas nec leo at nunc aliquam mattis. "
}
else
{
"short text"
}
This script enters the Greek text in the
first row and enters short text in all subsequent
rows.