Subject:Repeaters and Ifs Author:Ronan Kinsella Date:29 Jan 2009 12:34 PM
Hi,
I have a repeated node that contains months. I can drag this onto a document and it correctly sets up a repeater. However, I only want to display information from the repeater if the month is a certain value.
E.G. months are 12, 24, 48, 60, 120, 180 and 240
This is displayed as 12 24 48 60 120 180 240
Can I put a condition around it to display certain text?
If I change the content to be month=120 I get
False False False False True False False
If I try if(month=120)then "True Text" else "" I get an error.