can't you just use 'conditional formatting' and an X or something
simple ?
If a value is between 40 and 60 then display X?
I've previously done something like this in the sql statement
Select IIF((Select MySubQuery from SomeOtherTable) BETWEEN 40 and 60,
'X', ''), TheRestOfMyQuery
>From MyTable
WHERE MyWhereClause
-Aaron
Kelii wrote:
> Aaron,
>
> I could simulate a datasheet and locate an icon in the form in this
> manner. Although this is less than elegant, I suppose it will have to
> do.
>
> As a follow up to your question, I'm looking to show a simple piece of
> text (i.e., the flag), or ideally a pretty icon in the last field of a
> subform (datasheet view). The text or icon will appear if certain
> criteria (based on other pieces of the record) are met (i.e., price
> variations). I am not looking to place a button in the field.
>
> Kelii
|