User Guide
Chapter 2: ColdFusion Functions 559
YesNoFormat
Returns Boolean data as YES or NO.
See also IsBinary and IsNumeric.
Syntax YesNoFormat(
value
)
value
Any number or Boolean value.
Usage The YesNoFormat function returns all non-zero values as YES and zero values as NO.
Examples <!--- This example shows the YesNoFormat --->
<HTML>
<HEAD>
<TITLE>YesNoFormat Example</TITLE>
</HEAD>
<BODY>
<H3>YesNoFormat Example</H3>
<P>The YesNoFormat function returns all non-zero values
as "YES" and zero values as "NO".
<CFOUTPUT>
<UL>
<LI>YesNoFormat(1):#YesNoFormat(1)#
<LI>YesNoFormat(0):#YesNoFormat(0)#
<LI>YesNoFormat("1123"):#YesNoFormat("1123")#
<LI>YesNoFormat("No"):#YesNoFormat("No")#
<LI>YesNoFormat(TRUE):#YesNoFormat(TRUE)#
</UL>
</CFOUTPUT>
</BODY>
</HTML>