I have a form with an embedded subform in it. I want to use conditional formatting to change a field in the overall form to have a pink background color if a field in the embedded subform is True (1). So far I have: Format only cells where the: Expression Is:
Forms!frmSubForm!TextField.Value="True"
But this is not working. Any Ideas as to what I am doing wrong? The value that I am checking for "True" comes from a dbo table from SQL, where the value is 1 if true and 0 if false. Access seems to automatically convert 1's to True and 0's to False in form view. Still, I am not sure if the check for "True" is correct, or if it should check for "1" or 1...