Hi all,
I'm using Access 2003.
First, I have read many articles about using cond. formatting with continuous forms. The primary means seem to be using the Format->Conditional Formatting menu, or to create a box that will cover the background.
I'm trying to use the built-in mechanism, using an Expression to change the background color of a field if the expression is true. Here's the gist of it. I have another form (we'll call Ranking) where the user can select records. If they select those records, a unique ID is added to a global/Public string array via VBA. That form closes, and this other form (we'll call Master) opens. I want a certain field to be highlighted, if that record contains the same Unique ID. I also use a Public Function to return the array. Here's my expression:
I have also tried:
Neither appear to work, nor anything else I've tried. I can put a "true" expression in, and that works, just to verify the rest of my expression is correct:
This shouldn't be that hard...I feel like I'm missing something simple. Thanks in Advance for any help![Smile :) :)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
Malcolm
I'm using Access 2003.
First, I have read many articles about using cond. formatting with continuous forms. The primary means seem to be using the Format->Conditional Formatting menu, or to create a box that will cover the background.
I'm trying to use the built-in mechanism, using an Expression to change the background color of a field if the expression is true. Here's the gist of it. I have another form (we'll call Ranking) where the user can select records. If they select those records, a unique ID is added to a global/Public string array via VBA. That form closes, and this other form (we'll call Master) opens. I want a certain field to be highlighted, if that record contains the same Unique ID. I also use a Public Function to return the array. Here's my expression:
Code:
InStr(Join(query_satExclude()),[txtControlName].[Value])>0
Code:
InStr(Join(query_satExclude()),[fieldName])>0
Code:
InStr(Join(query_satExclude()),"uniqueID")>0
This shouldn't be that hard...I feel like I'm missing something simple. Thanks in Advance for any help
Malcolm