View Single Post
Old 09-21-2021, 11:17 AM   #2
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 10,988
Karma: 75337983
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
Booleans don't appear on the tag browser.

There's a workaround that you can use a composite column (column built from other column) and tick the 'show in tag browser' button. Something like this should work.

Code:
program:
	if
		check_yes_no('#mybool', 1, 0, 0)
	then
		'Undefined'

	elif
		check_yes_no('#mybool', 0, 1, 0)
	then
		'No'
	
	elif
		check_yes_no('#mybool', 0, 0, 1)
	then
		'Yes'
	fi

Last edited by ownedbycats; 09-21-2021 at 11:25 AM.
ownedbycats is offline   Reply With Quote