I am saving several bit-flags in a Byte field which I am using in a continous form to fill some checkboxes (Value 1 = Checkbox 1, Value 2 = Checkbox 2, Value 3 = Checkbox 1 + 2, etc.). Now I am trying to find a way to to parse this byte by bit-comparison inside the recordsource property of the checkbox. Just can't find the proper syntax - none of these work:
(for example Checkbox No.4
=If([intByte] && 8; True; False)
=If([intByte] & 8; True; False)
=If([intByte] And 8; True; False)
Is it possible that there is no way of comparing by Bit?
(for example Checkbox No.4
=If([intByte] && 8; True; False)
=If([intByte] & 8; True; False)
=If([intByte] And 8; True; False)
Is it possible that there is no way of comparing by Bit?