Kelly,

Make sure you look at the reference for attributes and tags and study them,
rather than getting so caught up in examples.

Would look like this:
<CFIF (data LT 1000) AND (data GTE 0)>
    <CFSET words="small">
<CFELSEIF (data LT 2000) AND (data GTE 1000)>
    <CFSET words="medium">
<CFELSE>
    <CFSET words="large">
</CFIF>

-Mark :o)


> How would you write a conditional statement like this:
>
> <CFIF data is greater than 0 and less that 1000>
>     <CFSET words="small">
> <CFELSE IF data is greater than 1000 and less than 2000>
>     <CFSET words="medium">
> <CFELSE>
>     <CFSET words="large">
> </CFIF>
>
>
> All of the examples seem to only show an "IS" value. not  "IS" range.
>
> Kelly
>
> --------------------------------------------------------------------------
----
> Archives: http://www.mail-archive.com/[email protected]/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to