A
Andy97
I have a form based on a query the pulls data from a table that has
months and numeric data associated to that particular month.
(e.g) [Jan] may have a value of 302, [Feb] may have a value of 107,
etc.
On my form I have a [Total] Numeric value that I want to test against a
specific month. I'd like to be able to test for the current month if
possible but I'll keep it simple.
What I am trying to say below is if the text field 'jul' is less than
the value in [Total Stock Qty] then I want my unbound field to display
ALERT. else GOOD
I have an unbound form field with the following control source.:
=IIf("jul"<"[Total Stock Qty]","ALERT","GOOD")
The problem is the value for my 'jul' text box is less than [Total
Stock Qty] but my unbound box still displays GOOD.
months and numeric data associated to that particular month.
(e.g) [Jan] may have a value of 302, [Feb] may have a value of 107,
etc.
On my form I have a [Total] Numeric value that I want to test against a
specific month. I'd like to be able to test for the current month if
possible but I'll keep it simple.
What I am trying to say below is if the text field 'jul' is less than
the value in [Total Stock Qty] then I want my unbound field to display
ALERT. else GOOD
I have an unbound form field with the following control source.:
=IIf("jul"<"[Total Stock Qty]","ALERT","GOOD")
The problem is the value for my 'jul' text box is less than [Total
Stock Qty] but my unbound box still displays GOOD.