BlingGirl New member Local time Today, 09:51 Joined Apr 11, 2020 Messages 19 Oct 1, 2023 #1 Is there a way to format a Yes/No field in a List Box? I am populating the list box from a Union Query and it is displaying the Yes/No fields as 0 & -1. Is there a way to format it to True/False or Yes/No?
Is there a way to format a Yes/No field in a List Box? I am populating the list box from a Union Query and it is displaying the Yes/No fields as 0 & -1. Is there a way to format it to True/False or Yes/No?
T tvanstiphout Active member Local time Today, 09:51 Joined Jan 22, 2016 Messages 321 Oct 1, 2023 #2 select Format(myField, "Yes/No") from myTable union all select Format(myField2, "Yes/No") from myTable2
select Format(myField, "Yes/No") from myTable union all select Format(myField2, "Yes/No") from myTable2
BlingGirl New member Local time Today, 09:51 Joined Apr 11, 2020 Messages 19 Oct 2, 2023 #3 Thank you @tvanstiphout! It worked great!