On 3 Aug 2012, at 4:55 PM, adohertyd <adoher...@hotmail.com> wrote: > Woops! I've done a double check, the results are not boolean. I've assigned > 'Yes' and 'No' to each button. Still though, the error remains. > > {{if conditionA=="Yes" and conditionB=="Yes"}} > > returns nothing but > > {{if conditionA=="Yes"}} > > returns output. The problem is definitely the multiple condition
Please try: if conditionB == "Yes" and perhaps: if True and True (just to make the test case dirt-simple) > > On Saturday, 4 August 2012 00:47:19 UTC+1, Jonathan Lundell wrote: > On 3 Aug 2012, at 4:45 PM, adohertyd wrote: >> Yes that's correct. The data comes from a radio button so the 2 conditions >> are always true or false (boolean) > > Just for laughs you could try > > if conditionA and conditionB: >> --