<div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">Is there any way to check if multiple variables exist in the same if statement? Right now I am having to writing multiple nested if statements but can be quite cumbersome... so just looking for an easier way.</div>

<div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><br></div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">Currently I&#39;d have to write:</div>

<div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">&lt;dtml-if var1&gt;</div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">  &lt;dtml-if var2&gt;</div>

<div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">    &lt;dtml-if var3&gt;</div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">    &lt;dtml-else&gt;</div>

<div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">    &lt;/dtml-if&gt; </div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">  &lt;dtml-else&gt;</div>

<div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">  &lt;/dtml-if&gt;</div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">&lt;dtml-else&gt;</div>

<div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">&lt;/dtml-if&gt;</div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><br></div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">

When it would be easier to do something like: </div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><br></div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">

&lt;dtml-if &quot;var1 and var2 and var3&quot;&gt;</div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">&lt;dtml-else&gt;</div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">

&lt;/dtml-if&gt;</div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><br></div><div style="font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">I&#39;ve tried multiple different methods to accomplish this but haven&#39;t had any luck... so is there an easier way to check multiple variables existence in the same check?</div>

<br class="Apple-interchange-newline"><div>Thanks.</div>