Output bit value as a string

Looking to convert bit value as a string. For example, an output of 1 would get converted to a string “Fail”, 0 would be “Normal”

You can use the case command in an expression binding

case({PathToYourBit},0,'GOOD',1,'FAIL','UNKNOWN')

1 Like

Perfect thanks for the information!!