boolstr(
BOOLEAN
)

The boolstr( function converts a Boolean value to text, either "true" or "false".


Parameters

This function has one parameter:

boolean – the true/false value (0=false, -1 = true)


Description

This function converts a Boolean value to text, either "true" or "false".

boolstr(1=1) ☞ true
boolstr(1=2) ☞ false

Note: This function is equivalent to:

?(thenumber=true(),"true","false")

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.